From 2867c9371b7bf5b5578a5f390d7c3b7a86b10afa Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Wed, 12 Jun 2024 20:52:01 +1000 Subject: [PATCH] Run unit-tests on Linux-only Signed-off-by: Jiahao XU --- .github/workflows/ci.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a2896d6..1f122f23 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,20 +70,9 @@ jobs: unit-tests: needs: changed-files - strategy: - fail-fast: false - matrix: - include: - - target: aarch64-apple-darwin - os: macos-14 - - target: x86_64-unknown-linux-gnu - os: ubuntu-latest - - target: x86_64-pc-windows-msvc - os: windows-latest - - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest env: - CARGO_BUILD_TARGET: ${{ matrix.target }} + CARGO_BUILD_TARGET: x86_64-unknown-linux-gnu steps: - uses: actions/checkout@v4