| Crates.io | crumble_ci |
| lib.rs | crumble_ci |
| version | 0.1.0 |
| created_at | 2020-11-23 08:13:28.541804+00 |
| updated_at | 2020-11-23 08:13:28.541804+00 |
| description | Simple CI system |
| homepage | |
| repository | https://github.com/wafelack/crumble |
| max_upload_size | |
| id | 315273 |
| size | 25,556 |
Simple CI system made in Rust.
Needs cargo
mkdir C:\CrumbleCI
cd C:\CrumbleCI
cargo install crumble_ci
set PATH=%PATH%;C:\CrumbleCI
cd /bin/
cargo install crumble_ci
To use crumble, create file .crumble.json at the root of your folder.
Write in the commands you want to run (as show in the example below)
{
"name": "Build & Test",
"jobs": {
"build": "cargo build --verbose",
"test" : "cargo test --verbose"
}
}
Then, to run your commands, just execute crumble in a terminal.
NOTE : You can generate a badge with crumble --badge