From 868e43d8a1657e59fa71d1de6bda277f034ff8dc Mon Sep 17 00:00:00 2001 From: Pure White Date: Tue, 5 Nov 2024 16:31:12 +0800 Subject: [PATCH] chore(ci): temporarily disable linux aarch64 tests (#283) --- .github/workflows/ci.yaml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4915b89a..770a6ddc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest needs: - test-linux - - test-linux-aarch64 + # - test-linux-aarch64 - test-macos - test-windows - lint @@ -36,19 +36,19 @@ jobs: cargo check cargo test - test-linux-aarch64: - runs-on: [self-hosted, arm] + # test-linux-aarch64: + # runs-on: [self-hosted, arm] - steps: - - uses: actions/checkout@v3 - - uses: dtolnay/rust-toolchain@nightly - with: - components: rustfmt, clippy - # - uses: Swatinem/rust-cache@v1 - - name: Run tests - run: | - cargo check - cargo test + # steps: + # - uses: actions/checkout@v3 + # - uses: dtolnay/rust-toolchain@nightly + # with: + # components: rustfmt, clippy + # # - uses: Swatinem/rust-cache@v1 + # - name: Run tests + # run: | + # cargo check + # cargo test test-macos: runs-on: macos-latest