ci: add -j4

This commit is contained in:
🪞👃🪞 2025-01-28 02:23:27 +01:00
parent 91e5b8dd16
commit 6a246cf4ad
4 changed files with 18 additions and 17 deletions

View file

@ -24,7 +24,7 @@ doc:
covfig := "CARGO_INCREMENTAL=0 RUSTFLAGS='-Cinstrument-coverage' RUSTDOCFLAGS='-Cinstrument-coverage' LLVM_PROFILE_FILE='cov/cargo-test-%p-%m.profraw'"
cov:
rm -rf target/coverage/html || true
{{covfig}} time cargo test --workspace --exclude jack --profile coverage
{{covfig}} time cargo test -j4 --workspace --exclude jack --profile coverage
{{covfig}} time grcov . --binary-path ./target/coverage/deps/ -s . -t html --ignore-not-existing --ignore '../*' --ignore "/*" --ignore 'target/*' -o target/coverage/html
llcov:
time cargo llvm-cov --workspace --exclude jack --profile coverage --no-report