Skip to content

Commit

Permalink
ci: apt-get update to fix C/C++ workflow (#257)
Browse files Browse the repository at this point in the history
### Changelog
None

### Docs

None

### Description

Hoping this will fix some sporadic errors in the C++ linux cross build
job (see also actions/runner#3720)
  • Loading branch information
jtbandes authored Feb 28, 2025
1 parent 4c14cd6 commit 5d9f9aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/c_cpp.yml
Original file line number Diff line number Diff line change
@@ -74,7 +74,7 @@ jobs:
with:
target: ${{ matrix.target }}

- run: sudo apt-get install gcc-aarch64-linux-gnu
- run: sudo apt-get update && sudo apt-get install gcc-aarch64-linux-gnu
if: matrix.target == 'aarch64-unknown-linux-gnu'
- run: echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
if: matrix.target == 'aarch64-unknown-linux-gnu'

0 comments on commit 5d9f9aa

Please sign in to comment.