Skip to content

Commit

Permalink
Remove arm tests as macos-latest uses aarch64 now.
Browse files Browse the repository at this point in the history
  • Loading branch information
riotcam committed May 15, 2024
1 parent 740ac53 commit 48d918e
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,19 +87,20 @@ jobs:
- run: ./build_and_test_wasm32_firefox.sh
- run: ./build_and_test_wasm32_chrome.sh

test-arm:
name: Test Arm
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
- aarch64-unknown-linux-gnu
- arm-unknown-linux-gnueabi
steps:
- uses: actions/checkout@v4
- run: rustup update --no-self-update stable
- run: rustup default stable
- run: rustup target add --toolchain stable ${{matrix.target}}
- uses: taiki-e/install-action@cross
- run: cross test --target ${{matrix.target}}
# macos-latest uses aarch64 so using cross shouldn't be necessary anymore
# test-arm:
# name: Test Arm
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# target:
# - aarch64-unknown-linux-gnu
# - arm-unknown-linux-gnueabi
# steps:
# - uses: actions/checkout@v4
# - run: rustup update --no-self-update stable
# - run: rustup default stable
# - run: rustup target add --toolchain stable ${{matrix.target}}
# - uses: taiki-e/install-action@cross
# - run: cross test --target ${{matrix.target}}

0 comments on commit 48d918e

Please sign in to comment.