From 6ab378fb48c246aef592e4b3e2617e6ee1ed5c4b Mon Sep 17 00:00:00 2001 From: Joshua Colvin Date: Fri, 13 Oct 2023 21:03:06 -0700 Subject: [PATCH] test `-j nproc` on ubuntu-4 --- .github/workflows/arbitrator-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/arbitrator-ci.yml b/.github/workflows/arbitrator-ci.yml index f2b141fb46d..c85fcd8ccaa 100644 --- a/.github/workflows/arbitrator-ci.yml +++ b/.github/workflows/arbitrator-ci.yml @@ -22,7 +22,8 @@ env: jobs: coverage: name: Run Arbitrator tests - runs-on: ubuntu-8 + runs-on: ubuntu-4 + concurrency: arbitrator-ci2 steps: - name: Checkout uses: actions/checkout@v3 @@ -166,7 +167,7 @@ jobs: args: --all --manifest-path arbitrator/Cargo.toml -- --check - name: Make proofs from test cases - run: make -j test-gen-proofs + run: echo nproc:$(nproc); make -j$(nproc) test-gen-proofs - name: Create code-coverage files run: |