From 79ca711d68adfc9da8f5a1bd8b037480239807a7 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Mon, 11 Sep 2023 14:05:10 -0500 Subject: [PATCH] Cant run linux arm tests in CI because of fixed runner arch, remove for now --- .github/workflows/ci.yaml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4bde3cf..8691eae 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 \