Skip to content

Commit 3386795

Browse files
eransclaude
andcommitted
ci: increase parallelism to CARGO_BUILD_JOBS=4
Performance progression testing: - CARGO_BUILD_JOBS=1: Build 8m56s - CARGO_BUILD_JOBS=2: Build 2m5s (4.3x faster) - CARGO_BUILD_JOBS=4: Testing optimal performance 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 2a5660a commit 3386795

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
# Build only in release mode to save space
3434
cargo build --release --verbose
3535
env:
36-
CARGO_BUILD_JOBS: 3
36+
CARGO_BUILD_JOBS: 4
3737
- name: Upload build artifacts
3838
uses: actions/upload-artifact@v4
3939
with:
@@ -74,9 +74,9 @@ jobs:
7474
- name: Run unit tests
7575
run: |
7676
# Run tests with minimal parallelism
77-
cargo test --release --verbose --jobs 3
77+
cargo test --release --verbose --jobs 4
7878
env:
79-
CARGO_BUILD_JOBS: 3
79+
CARGO_BUILD_JOBS: 4
8080
- name: Install bc (for test timing calculations)
8181
run: sudo apt-get install -y bc
8282
- name: Run integration tests - TCP with SSL

0 commit comments

Comments
 (0)