From ff5dce86eab219538e0eb1fc579e6c425a91b33a Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sat, 23 Nov 2024 14:38:24 -0500 Subject: [PATCH] Give "slow" packages even more time --- src/evaluate.jl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/evaluate.jl b/src/evaluate.jl index a198154f..d28473c3 100644 --- a/src/evaluate.jl +++ b/src/evaluate.jl @@ -302,8 +302,11 @@ function evaluate_test(config::Configuration, pkg::Package; use_cache::Bool=true name = "$(pkg.name)-$(config.name)-$(randstring(rng))" # grant some packages more test time + # As of Julia 1.12, PackageCompiler takes even more time (more than 90 minutes), + # so let's do *3 instead of *2. Our slow list is very short (just two packages + # at the time or writing), so I think it's fine. if pkg.name in slow_list - config = Configuration(config; time_limit=config.time_limit*2) + config = Configuration(config; time_limit=config.time_limit*3) end # we create our own workdir so that we can reuse it