Skip to content

Commit c6c00ce

Browse files
committed
ci: Install gcc-aarch64-linux-gnu for gnd cross-compilation
The GitHub runner image no longer ships with the aarch64 cross-compiler pre-installed, causing the gnd binary build to fail for aarch64-unknown-linux-gnu.
1 parent a60fdc9 commit c6c00ce

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/gnd-binary-build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ jobs:
4747
run: |
4848
sudo apt-get update
4949
sudo apt-get install -y protobuf-compiler musl-tools
50+
if [ "${{ matrix.target }}" = "aarch64-unknown-linux-gnu" ]; then
51+
sudo apt-get install -y gcc-aarch64-linux-gnu
52+
fi
5053
5154
- name: Install dependencies (macOS)
5255
if: startsWith(matrix.runner, 'macos')

0 commit comments

Comments
 (0)