Skip to content

Commit

Permalink
CI: Relax rate limit to 30/1 (#1209)
Browse files Browse the repository at this point in the history
`100/1` slows CI down to a snail when getting rate limited by GitHub.

Signed-off-by: Jiahao XU <[email protected]>
  • Loading branch information
NobodyXu authored Jul 17, 2023
1 parent 5acfda9 commit c11261b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c11261b

Please sign in to comment.