Skip to content
Open
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,8 @@ pipeline {
stage('Functional on EL 8.8 with Valgrind') {
when {
beforeAgent true
expression { shouldStageRun('Functional on EL 8.8 with Valgrind') }
expression { shouldStageRun('Functional on EL 8.8 with Valgrind') &&
!testsInStage(getFunctionalTags('-vm', 'vm', 'pr')) }
}
agent {
label vm9_label('EL8')
Expand All @@ -1202,7 +1203,8 @@ pipeline {
stage('Functional on EL 8') {
when {
beforeAgent true
expression { shouldStageRun('Functional on EL 8') }
expression { shouldStageRun('Functional on EL 8') &&
!testsInStage(getFunctionalTags('-vm', 'vm', 'pr')) }
Comment thread
phender marked this conversation as resolved.
Outdated
}
agent {
label vm9_label('EL8')
Expand All @@ -1226,7 +1228,8 @@ pipeline {
stage('Functional on EL 9') {
when {
beforeAgent true
expression { shouldStageRun('Functional on EL 9') }
expression { shouldStageRun('Functional on EL 9') &&
!testsInStage(getFunctionalTags('-vm', 'vm', 'pr'))}
}
agent {
label vm9_label('EL9')
Expand All @@ -1250,7 +1253,8 @@ pipeline {
stage('Functional on Leap 15') {
when {
beforeAgent true
expression { shouldStageRun('Functional on Leap 15') }
expression { shouldStageRun('Functional on Leap 15') &&
!testsInStage(getFunctionalTags('-vm', 'vm', 'pr'))}
}
agent {
label vm9_label('Leap15')
Expand All @@ -1274,7 +1278,8 @@ pipeline {
stage('Functional on SLES 15') {
when {
beforeAgent true
expression { shouldStageRun('Functional on SLES 15') }
expression { shouldStageRun('Functional on SLES 15') &&
!testsInStage(getFunctionalTags('-vm', 'vm', 'pr'))}
}
agent {
label vm9_label('Leap15')
Expand All @@ -1298,7 +1303,8 @@ pipeline {
stage('Functional on Ubuntu 20.04') {
when {
beforeAgent true
expression { shouldStageRun('Functional on Ubuntu 20.04') }
expression { shouldStageRun('Functional on Ubuntu 20.04') &&
!testsInStage(getFunctionalTags('-vm', 'vm', 'pr'))}
}
agent {
label vm9_label('Ubuntu')
Expand Down
Loading