rickub/ci-benchpublic Fork 0
35efc9cc863d18db697b419bf6386089ead68a6d
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.

ci-bench: cross-platform CI race scaffold (rickub CI vs GitHub Actions) 0baf736Unverified · on 35efc9cc863d18db697b419bf6386089ead68a6d · Olivier Girardot · yesterday
Cargo.toml · 18 lines · 635 BTOML Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
[package]
name = "bench-rust-build"
version = "0.1.0"
edition = "2021"
description = "Cold/warm build + test workload for the ci-bench CI race benchmark."

# Versions are EXACT-pinned (=) so both platforms resolve the identical set; the
# generated Cargo.lock is committed alongside and is the real pin.
[dependencies]
anyhow  = "=1.0.103"
clap    = { version = "=4.6.1", features = ["derive"] }
regex   = "=1.13.1"
serde       = { version = "=1.0.228", features = ["derive"] }
serde_json  = "=1.0.150"
tokio   = { version = "=1.53.0", features = ["rt-multi-thread", "macros", "time", "sync", "io-util"] }

[profile.release]
debug = 1