Skip to content

Commit

Permalink
Re-enables installing protobuf all the time
Browse files Browse the repository at this point in the history
  • Loading branch information
scottopell committed Mar 14, 2024
1 parent ba35054 commit 1436e54
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
matrix:
include:
- target: aarch64-unknown-linux-gnu
requires-cross-compilation: true # assuming x86-64 runner
os: ubuntu-latest

- target: x86_64-unknown-linux-gnu
Expand All @@ -38,11 +37,9 @@ jobs:
os: ubuntu-latest

- target: aarch64-unknown-linux-musl
requires-cross-compilation: true # assuming x86-64 runner
os: ubuntu-latest

- target: aarch64-apple-darwin
requires-cross-compilation: true # assuming x86-64 runner
os: macos-latest

- target: x86_64-apple-darwin
Expand All @@ -58,8 +55,11 @@ jobs:
with:
tool: cross

# This installs protobuf on the host (runner)
# This is not needed for cross-compiled targets, however there is no
# way to check the architecture of the current runner, so this just always
# runs.
- name: Install Protobuf
if: matrix.requires-cross-compilation == false
uses: ./.github/actions/install-protobuf

# Run the build & upload artifacts
Expand Down

0 comments on commit 1436e54

Please sign in to comment.