[llvm] [green-dragon] fix test param in triggered bisection jobs (PR #181962)
Justice Adams via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 17 20:27:46 PST 2026
https://github.com/justice-adams-apple created https://github.com/llvm/llvm-project/pull/181962
None
>From 0e24dfc921278d335695e9c86f1887abd0fc2c82 Mon Sep 17 00:00:00 2001
From: Justice Adams <jadams23 at apple.com>
Date: Tue, 17 Feb 2026 20:27:20 -0800
Subject: [PATCH] [green-dragon] fix test param in triggered bisection jobs
---
.ci/green-dragon/bisect.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.ci/green-dragon/bisect.groovy b/.ci/green-dragon/bisect.groovy
index ee45bef7b4f3e..48d4b497e2e2d 100644
--- a/.ci/green-dragon/bisect.groovy
+++ b/.ci/green-dragon/bisect.groovy
@@ -132,7 +132,7 @@ pipeline {
string(name: 'BISECT_GOOD', value: stepInfo.bisection_range.current_good),
string(name: 'BISECT_BAD', value: stepInfo.bisection_range.current_bad),
booleanParam(name: 'IS_BISECT_JOB', value: true),
- booleanParam(name: 'SKIP_TESTS', value: params.RUN_TESTS),
+ booleanParam(name: 'SKIP_TESTS', value: !params.RUN_TESTS),
booleanParam(name: 'SKIP_TRIGGER', value: true)
],
propagate: false,
More information about the llvm-commits
mailing list