Compare commits

...

2 Commits

Author SHA1 Message Date
Will Wang
5c751e8885 limit to p4 2026-01-15 11:40:59 -08:00
Will Wang
299d24e2d6 concurrency of number of cores 2026-01-15 11:29:20 -08:00

View File

@@ -302,7 +302,7 @@ jobs:
continue-on-error: true
run: |
find . -name Cargo.toml -mindepth 2 -maxdepth 2 -print0 \
| xargs -0 -n1 -I{} bash -c 'cd "$(dirname "{}")" && cargo check --profile ${{ matrix.profile }}'
| xargs -0 -n1 -P4 -I{} bash -c 'cd "$(dirname "{}")" && cargo check --profile ${{ matrix.profile }}'
# Save caches explicitly; make non-fatal so cache packaging
# never fails the overall job. Only save when key wasn't hit.