Skip to content

Commit

Permalink
chore: install cross compile for ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
ktechmidas committed Oct 11, 2024
1 parent 18df56e commit 6800132
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ jobs:
echo "PROTOC=${HOME}/.local/bin/protoc" >> $GITHUB_ENV
export PATH="${PATH}:${HOME}/.local/bin"
# Install cross-compilation toolchain for ARM on Linux
- name: Install cross-compilation toolchain (only for arm64)
if: matrix.arch == 'arm64' && matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu

- name: Check out code
uses: actions/checkout@v4

Expand Down

0 comments on commit 6800132

Please sign in to comment.