From 0fd14dda78bd51a790be3eb62fccf7e48b89f128 Mon Sep 17 00:00:00 2001 From: Ammar Arif Date: Tue, 26 Mar 2024 07:11:02 +0900 Subject: [PATCH] Limit nextest build jobs --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 958cc2a4e0..cea8f114a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,8 +19,8 @@ jobs: - uses: actions/checkout@v3 - uses: Swatinem/rust-cache@v2 - run: | - cargo llvm-cov nextest --no-report --all-features --workspace --exclude katana - cargo llvm-cov nextest --no-report -p katana + cargo llvm-cov nextest --no-report --all-features --workspace --exclude katana --build-jobs 6 + cargo llvm-cov nextest --no-report -p katana cargo llvm-cov nextest --no-report -p katana --no-default-features --features sir cargo llvm-cov report --lcov --output-path lcov.info - uses: codecov/codecov-action@v3