From c11261b88f73b7ec63534a2cd346d6be45ecbda4 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Tue, 18 Jul 2023 06:19:50 +1000 Subject: [PATCH] CI: Relax rate limit to `30/1` (#1209) `100/1` slows CI down to a snail when getting rate limited by GitHub. Signed-off-by: Jiahao XU --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 611d0040..8814d409 100644 --- a/justfile +++ b/justfile @@ -12,7 +12,7 @@ use-auditable := env_var_or_default("JUST_USE_AUDITABLE", "") timings := env_var_or_default("JUST_TIMINGS", "") export BINSTALL_LOG_LEVEL := if env_var_or_default("RUNNER_DEBUG", "0") == "1" { "debug" } else { "info" } -export BINSTALL_RATE_LIMIT := "100/1" +export BINSTALL_RATE_LIMIT := "30/1" cargo := if use-cargo-zigbuild != "" { "cargo-zigbuild" } else if use-cross != "" { "cross" } else { "cargo" } export CARGO := cargo