Skip to content

Commit

Permalink
kie-issues#777: Allow restricting jenkins agent labels for pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
cimbalek committed Feb 16, 2024
1 parent f93f1c7 commit 9c1181e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .ci/jenkins/Jenkinsfile.deploy
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ examplesHelper = null

pipeline {
agent {
label 'kie-rhel8 && docker && kie-mem16g && !built-in'
label util.avoidFaultyNodes('kie-rhel8 && docker && kie-mem16g && !built-in')
}

tools {
Expand Down
2 changes: 1 addition & 1 deletion .ci/jenkins/Jenkinsfile.post-release
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import org.jenkinsci.plugins.workflow.libs.Library

pipeline {
agent {
label 'kie-rhel8 && !built-in'
label util.avoidFaultyNodes('kie-rhel8 && !built-in')
}

tools {
Expand Down
2 changes: 1 addition & 1 deletion .ci/jenkins/Jenkinsfile.promote
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ examplesHelper = null

pipeline {
agent {
label 'rhel8 && !built-in'
label util.avoidFaultyNodes('rhel8 && !built-in')
}

options {
Expand Down
2 changes: 1 addition & 1 deletion .ci/jenkins/Jenkinsfile.quarkus-3.rewrite.pr
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ changeTarget = env.ghprbTargetBranch ?: CHANGE_TARGET

pipeline {
agent {
label 'kie-rhel8 && docker && kie-mem16g && !built-in'
label util.avoidFaultyNodes('kie-rhel8 && docker && kie-mem16g && !built-in')
}
tools {
maven env.BUILD_MAVEN_TOOL
Expand Down
2 changes: 1 addition & 1 deletion .ci/jenkins/Jenkinsfile.quarkus-3.rewrite.standalone
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ previousHash = ''

pipeline {
agent {
label 'kie-rhel8 && docker && kie-mem16g && !built-in'
label util.avoidFaultyNodes('kie-rhel8 && docker && kie-mem16g && !built-in')
}

tools {
Expand Down
2 changes: 1 addition & 1 deletion .ci/jenkins/Jenkinsfile.setup-branch
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ kogitoAppsRepo = 'kogito-apps'

pipeline {
agent {
label 'kie-rhel8 && !built-in'
label util.avoidFaultyNodes('kie-rhel8 && !built-in')
}

tools {
Expand Down

0 comments on commit 9c1181e

Please sign in to comment.