[llvm] [test-release.sh] Increase ninja keep going tasks (PR #106009)
Keith Smiley via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 25 13:42:54 PDT 2024
https://github.com/keith created https://github.com/llvm/llvm-project/pull/106009
The intent of this code is to keep going "forever", limiting to 100 tasks isn't suitable in release testing. The llvm-test-suite repo has ~11k actions today, so we at least want to be larger than that. I don't see a reason to limit to something closer.
>From 186c4fab55067c6ab7e464694aeee1ca777a2018 Mon Sep 17 00:00:00 2001
From: Keith Smiley <keithbsmiley at gmail.com>
Date: Sun, 25 Aug 2024 13:40:35 -0700
Subject: [PATCH] [test-release.sh] Increase ninja keep going tasks
The intent of this code is to keep going "forever", limiting to 100
tasks isn't suitable in release testing. The llvm-test-suite repo has
~11k actions today, so we at least want to be larger than that. I don't
see a reason to limit to something closer.
---
llvm/utils/release/test-release.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/utils/release/test-release.sh b/llvm/utils/release/test-release.sh
index 050004aa08c493..8dd69850e7d558 100755
--- a/llvm/utils/release/test-release.sh
+++ b/llvm/utils/release/test-release.sh
@@ -564,7 +564,7 @@ function test_llvmCore() {
if [ ${MAKE} = 'ninja' ]; then
# Ninja doesn't have a documented "keep-going-forever" mode, we need to
# set a limit on how many jobs can fail before we give up.
- KeepGoing="-k 100"
+ KeepGoing="-k 100000"
fi
cd $ObjDir
More information about the llvm-commits
mailing list