
# 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>
14 lines
216 B
TOML
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
|