bevy/tools/ci/Cargo.toml
Lucas Franca c8cb7bdf57
Allow passing number of thread for building and testing to CI (#19359)
# Objective

Fixes #16051
Closes #16145

## Solution

Allow passing `--build-jobs` and `--test-threads` to `ci`
i.e.
```
cargo run -p ci -- --build-jobs 4 --test-threads 4
```

## Testing

running ci locally

---------

Co-authored-by: Benjamin Brienen <Benjamin.Brienen@outlook.com>
2025-06-16 21:19:47 +00:00

14 lines
216 B
TOML

[package]
name = "ci"
edition = "2024"
description = "Tool that enables running CI checks locally."
publish = false
license = "MIT OR Apache-2.0"
[dependencies]
argh = "0.1"
xshell = "0.2"
[lints]
workspace = true