From f93dbfca131d412c42ec3b1002d80861b9cfcb19 Mon Sep 17 00:00:00 2001 From: Arnout Vandecappelle Date: Mon, 1 Jun 2026 21:28:55 +0200 Subject: [PATCH] support/scripts/generate-gitlab-ci-yml: use large runners for defconfigs defconfigs are very unlikely to successfully build on a small runner because they build a kernel (and often a toolchain). They're also likely to benefit a lot from the additional parallelism on larger runners. For now, always build them on large runners. There may be some for which even the large runners don't have sufficient disk space or memory, but we'll solve that when it happens. Signed-off-by: Arnout Vandecappelle Signed-off-by: Romain Naour --- support/scripts/generate-gitlab-ci-yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/scripts/generate-gitlab-ci-yml b/support/scripts/generate-gitlab-ci-yml index 2a8c9be5f5..48c272e6f5 100755 --- a/support/scripts/generate-gitlab-ci-yml +++ b/support/scripts/generate-gitlab-ci-yml @@ -126,7 +126,7 @@ gen_tests() { if [ -n "${do_defconfigs}" ]; then for cfg in "${defconfigs[@]}"; do - printf '%s%s: { extends: .defconfig_%s }\n' \ + printf '%s%s: { extends: [ .defconfig_%s, .runner-large ] }\n' \ "${cfg}" "${defconfigs_ext}" "${do_defconfigs}" done fi