From 3baa74371bfb0e7d9225be5cec0359078ff5afdc Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Sun, 25 Jan 2026 20:17:08 -0300 Subject: [PATCH] Increase build concurrency to j=8 --- .forgejo/workflows/botserver.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/botserver.yaml b/.forgejo/workflows/botserver.yaml index f29b130fb..e8d4ad2f4 100644 --- a/.forgejo/workflows/botserver.yaml +++ b/.forgejo/workflows/botserver.yaml @@ -7,7 +7,7 @@ on: branches: ["main"] env: - CARGO_BUILD_JOBS: 1 + CARGO_BUILD_JOBS: 8 CARGO_INCREMENTAL: 0 CARGO_NET_RETRY: 10 @@ -80,7 +80,7 @@ jobs: - name: Build debug working-directory: workspace run: | - cargo build -p botserver -p botui -j 1 2>&1 | tee /tmp/build.log + cargo build -p botserver -p botui -j 8 2>&1 | tee /tmp/build.log ls -lh target/debug/botserver ls -lh target/debug/botui sccache --show-stats || true