From 871d3a9564ea57fa2949ca87707088f3bb2b400d Mon Sep 17 00:00:00 2001 From: Konstantin Malanchev Date: Sun, 2 Feb 2025 20:05:01 -0500 Subject: [PATCH] Replace self-hosted runner with provided by GH --- .github/workflows/test.yml | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e4de707..ed4d15d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -55,7 +55,11 @@ jobs: - run: cargo +${{ steps.get_msrv.outputs.msrv }} build --no-default-features --features ceres-source,fftw-source,gsl test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + + strategy: + matrix: + os: [ubuntu-latest, ubuntu-24.04-arm] steps: - uses: actions/checkout@v4 @@ -203,16 +207,6 @@ jobs: env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - arm: - runs-on: [ self-hosted, linux, ARM64 ] - - steps: - - uses: actions/checkout@v4 - with: - submodules: true - - name: build - run: cargo build --all-targets --no-default-features --features=ceres-source,fftw-source,gsl - macos: runs-on: macos-latest