[llvm] [green-dragon] fix test param in triggered bisection jobs (PR #181962)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 17 20:28:16 PST 2026
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-infrastructure
Author: Justice Adams (justice-adams-apple)
<details>
<summary>Changes</summary>
Fix the usage of our skip_tests parm
---
Full diff: https://github.com/llvm/llvm-project/pull/181962.diff
1 Files Affected:
- (modified) .ci/green-dragon/bisect.groovy (+1-1)
``````````diff
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,
``````````
</details>
https://github.com/llvm/llvm-project/pull/181962
More information about the llvm-commits
mailing list