Skip to content

Commit

Permalink
Remove unused CI step (#1207)
Browse files Browse the repository at this point in the history
### What
Remove CI step that installs gcc/g++ for aarch64 on Linux.

### Why
It doesn't appear to be needed. The step has an error in it's `if`
clause that causes it to never be triggered. The if checks
`matrix.target` but should be checking `matrix.sys.target`. All the CI
tests are passing so it seems like it is not needed.
  • Loading branch information
leighmcculloch authored Jan 16, 2024
1 parent 25750fb commit 4bb598b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ jobs:
- run: cargo version
- run: rustup target add ${{ matrix.sys.target }}
- run: rustup target add wasm32-unknown-unknown
- if: matrix.target == 'aarch64-unknown-linux-gnu'
run: sudo apt-get update && sudo apt-get -y install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
- uses: stellar/binaries@v18
with:
name: cargo-hack
Expand Down

0 comments on commit 4bb598b

Please sign in to comment.