rickub/ci-benchpublic Fork 0
fba04eba4dee92ce17de4847289c54c813914bcc
Commits
Clone
git clone https://git.rickub.com/rickub/ci-bench.git
git clone ssh://git@rickub.com/rickub/ci-bench.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

main.rs · 15 lines · 361 BRust Blame HistoryRaw
ci-bench: cross-platform CI race scaffold (rickub CI vs GitHub Actions) 0baf736 Olivier Girardot yesterday1//! Thin CLI wrapper so the workload is runnable as a binary, not just a lib.
2
3use clap::Parser;
4
5use bench_rust_build::{run, Config};
6
7fn main() -> anyhow::Result<()> {
8 let cfg = Config::parse();
9 let selected = run(cfg.clone())?;
10 println!(
11 "items/round={} rounds={} selected={}",
12 cfg.items, cfg.rounds, selected
13 );
14 Ok(())
15}