From ac3c11be8d061ce0107cb9ef46d8e710b3de8466 Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Tue, 3 Feb 2026 09:52:07 +0100 Subject: [PATCH] ci: limit cargo parallelism --- .woodpecker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 1dd7232..d618c21 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -6,13 +6,13 @@ steps: RUST_BACKTRACE: 1 commands: - rustup component add rustfmt clippy - - cargo install sqlx-cli --no-default-features --features postgres,tls-rustls + - cargo install -j 2 sqlx-cli --no-default-features --features postgres,tls-rustls - cd backend - sqlx migrate run - cargo fmt --all -- --check - - cargo clippy --all-targets --all-features -- -D warnings - - cargo test --all - - cargo build --release + - cargo clippy -j 2 --all-targets --all-features -- -D warnings + - cargo test -j 2 --all + - cargo build -j 2 --release frontend: image: node:20-bookworm