From 2f3177e6a92686b2a2b1beeaa234192e07aa4bcc Mon Sep 17 00:00:00 2001 From: Dustin Brickwood Date: Thu, 26 Oct 2023 20:33:11 -0500 Subject: [PATCH] chore: update test workflow --- .github/workflows/test.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cd11ac911..05db481b3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,7 +42,7 @@ jobs: build-tests: name: build tests - runs-on: ${{ matrix.os }} + runs-on: [ubuntu-22.04-github-hosted-16core, macos-latest] timeout-minutes: 60 needs: matrices strategy: @@ -71,8 +71,8 @@ jobs: test: name: test ${{ matrix.name }} - runs-on: ${{ matrix.os }} - timeout-minutes: 60 + runs-on: [ubuntu-22.04-github-hosted-16core, macos-latest] + timeout-minutes: 90 needs: - matrices - build-tests @@ -123,9 +123,11 @@ jobs: - uses: dtolnay/rust-toolchain@nightly - uses: Swatinem/rust-cache@v2 with: - cache-on-failure: true + cache-on-failure: true - name: cargo test - run: cargo test --doc + run: cargo test --doc -p zkforge -p zkcast + env: + RUST_TEST_THREADS: 2 clippy: name: clippy