mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-05 00:08:06 +08:00
- Add a basic testground plan for bitswap - Showcases how to emit regressions stats from a testplan - Add CI plumbing to run testplans on push As a result of this PR, also: - Created the ipfs/go-ipfs-regressions repo, which defines stats structures for the output of testplans and the input to regression analysis and tests
20 lines
519 B
TOML
20 lines
519 B
TOML
name = "bitswap"
|
|
|
|
[builders]
|
|
"docker:go" = { enabled = true, enable_go_build_cache = true }
|
|
|
|
[runners]
|
|
"local:docker" = { enabled = true }
|
|
"cluster:k8s" = { enabled = true }
|
|
|
|
[global.build_config]
|
|
enable_go_build_cache = true
|
|
|
|
[[testcases]]
|
|
name = "speed-test"
|
|
instances = { min = 2, max = 100, default = 2 }
|
|
|
|
[testcases.params]
|
|
size = { type = "int", desc = "size of file to transfer, in human-friendly form", default = "1MiB" }
|
|
count = { type = "int", desc = "number of transfers", default = "10" }
|