Increase build concurrency to j=8

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-01-25 20:17:08 -03:00
parent a15afd14ff
commit 3baa74371b

View file

@ -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