Skip to content

Commit

Permalink
Merge pull request #11 from SierraSoftworks/build/linux-arm64
Browse files Browse the repository at this point in the history
ci : Fix build issues for linux-arm64
  • Loading branch information
notheotherben authored Sep 26, 2022
2 parents 1f989e4 + 4f6d471 commit 5817b89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ jobs:
experimental: true
setup: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu lld
sudo apt-get install -y gcc-aarch64-linux-gnu lld pkg-config libssl-dev
# Ensure that the libgcc library can be found
sudo ln -s /usr/aarch64-linux-gnu/lib/libgcc_s.so.1 /usr/aarch64-linux-gnu/lib/libgcc_s.so
Invoke-WebRequest -OutFile /tmp/protoc.zip -Uri https://github.com/protocolbuffers/protobuf/releases/download/v3.20.2/protoc-3.20.2-linux-aarch_64.zip
Invoke-WebRequest -OutFile /tmp/protoc.zip -Uri https://github.com/protocolbuffers/protobuf/releases/download/v3.20.2/protoc-3.20.2-linux-x86_64.zip
Expand-Archive /tmp/protoc.zip -DestinationPath ../tools
Add-Content -Path $env:GITHUB_PATH -Value "$((get-item ./).parent.fullname)/tools/bin"
strip: aarch64-linux-gnu-strip --strip-debug
Expand All @@ -104,7 +104,7 @@ jobs:
os: darwin
target: aarch64-apple-darwin
setup: |
Invoke-WebRequest -OutFile /tmp/protoc.zip -Uri https://github.com/protocolbuffers/protobuf/releases/download/v3.20.2/protoc-3.20.2-osx-aarch_64.zip
Invoke-WebRequest -OutFile /tmp/protoc.zip -Uri https://github.com/protocolbuffers/protobuf/releases/download/v3.20.2/protoc-3.20.2-osx-x86_64.zip
Expand-Archive /tmp/protoc.zip -DestinationPath ../tools
Add-Content -Path $env:GITHUB_PATH -Value "$((get-item ./).parent.fullname)/tools/bin"
Expand Down

0 comments on commit 5817b89

Please sign in to comment.