Skip to content

Commit 5817b89

Browse files
Merge pull request #11 from SierraSoftworks/build/linux-arm64
ci : Fix build issues for linux-arm64
2 parents 1f989e4 + 4f6d471 commit 5817b89

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ jobs:
7979
experimental: true
8080
setup: |
8181
sudo apt-get update
82-
sudo apt-get install -y gcc-aarch64-linux-gnu lld
82+
sudo apt-get install -y gcc-aarch64-linux-gnu lld pkg-config libssl-dev
8383
8484
# Ensure that the libgcc library can be found
8585
sudo ln -s /usr/aarch64-linux-gnu/lib/libgcc_s.so.1 /usr/aarch64-linux-gnu/lib/libgcc_s.so
8686
87-
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
87+
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
8888
Expand-Archive /tmp/protoc.zip -DestinationPath ../tools
8989
Add-Content -Path $env:GITHUB_PATH -Value "$((get-item ./).parent.fullname)/tools/bin"
9090
strip: aarch64-linux-gnu-strip --strip-debug
@@ -104,7 +104,7 @@ jobs:
104104
os: darwin
105105
target: aarch64-apple-darwin
106106
setup: |
107-
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
107+
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
108108
Expand-Archive /tmp/protoc.zip -DestinationPath ../tools
109109
Add-Content -Path $env:GITHUB_PATH -Value "$((get-item ./).parent.fullname)/tools/bin"
110110

0 commit comments

Comments
 (0)