[green-dragon] fix test param in triggered bisection jobs (#181962)

Fix the usage of our skip_tests parm
This commit is contained in:
Justice Adams
2026-02-17 20:30:23 -08:00
committed by GitHub
parent ca16347ab2
commit bdf4eaed89

View File

@@ -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,