Cant run linux arm tests in CI because of fixed runner arch, remove for now

This commit is contained in:
Filip Tibell 2023-09-11 14:05:10 -05:00
parent a9b60db54f
commit 79ca711d68
No known key found for this signature in database

View file

@ -41,10 +41,6 @@ jobs:
runner-os: ubuntu-latest
cargo-target: x86_64-unknown-linux-gnu
- name: Linux aarch64
runner-os: ubuntu-latest
cargo-target: aarch64-unknown-linux-gnu
- name: macOS x86_64
runner-os: macos-latest
cargo-target: x86_64-apple-darwin
@ -67,13 +63,6 @@ jobs:
components: clippy
targets: ${{ matrix.cargo-target }}
- name: Install build tooling (aarch64-unknown-linux-gnu)
if: matrix.cargo-target == 'aarch64-unknown-linux-gnu'
run: |
sudo apt-get update -y
sudo apt-get install -y musl-tools clang llvm
sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
- name: Build
run: |
cargo build \