@@ -102,6 +102,7 @@ boolean skip_if_unstable() {
102102 cachedCommitPragma(' Allow-unstable-test' ). toLowerCase() == ' true' ||
103103 env. BRANCH_NAME == ' master' ||
104104 env. BRANCH_NAME . startsWith(" weekly-testing" ) ||
105+ env. BRANCH_NAME . startsWith(" provider-testing" ) ||
105106 env. BRANCH_NAME . startsWith(" release/" )) {
106107 return false
107108 }
@@ -316,6 +317,9 @@ boolean call(Map config = [:]) {
316317 (env. BRANCH_NAME . startsWith(' weekly-testing' ) &&
317318 ! startedByTimer() &&
318319 ! startedByUser()) ||
320+ (env. BRANCH_NAME . startsWith(' provider-testing' ) &&
321+ ! startedByTimer() &&
322+ ! startedByUser()) ||
319323 skip_if_unstable()
320324 case " Test on CentOS 7 [in] Vagrant" :
321325 return skip_stage_pragma(' vagrant-test' , ' true' ) &&
@@ -405,6 +409,9 @@ boolean call(Map config = [:]) {
405409 (env. BRANCH_NAME . startsWith(' weekly-testing' ) &&
406410 ! startedByTimer() &&
407411 ! startedByUser()) ||
412+ (env. BRANCH_NAME . startsWith(' provider-testing' ) &&
413+ ! startedByTimer() &&
414+ ! startedByUser()) ||
408415 skip_if_unstable()
409416 case " Functional_Hardware_Small" :
410417 case " Functional Hardware Small" :
@@ -420,18 +427,6 @@ boolean call(Map config = [:]) {
420427 case " Bullseye Report on EL 8" :
421428 return env. BULLSEYE == null ||
422429 skip_stage_pragma(' bullseye' , ' true' )
423- case ' Functional Hardware Small TCP' :
424- return skip_ftest_hw(' small-tcp' , target_branch)
425- case ' Functional Hardware Medium TCP' :
426- return skip_ftest_hw(' medium-tcp' , target_branch)
427- case ' Functional Hardware Large TCP' :
428- return skip_ftest_hw(' large-tcp' , target_branch)
429- case ' Functional Hardware Small UCX' :
430- return skip_ftest_hw(' small-ucx' , target_branch)
431- case ' Functional Hardware Medium UCX' :
432- return skip_ftest_hw(' medium-ucx' , target_branch)
433- case ' Functional Hardware Large UCX' :
434- return skip_ftest_hw(' large-ucx' , target_branch)
435430 default :
436431 println (" Don't know how to skip stage \" ${ env.STAGE_NAME} \" , not skipping" )
437432 }
0 commit comments