Skip to content

Commit

Permalink
force build koji and build copr onto different agents
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeni authored and ekohl committed Nov 8, 2023
1 parent fd9922b commit ab3ef60
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def deb_build_steps = [
]

pipeline {
agent { label 'rpmbuild' }
agent none

options {
timestamps()
Expand All @@ -21,6 +21,8 @@ pipeline {
stage('Build Package') {
parallel {
stage('Build Koji RPM') {
agent { label 'rpmbuild' }

when {
expression { build_rpm }
}
Expand Down Expand Up @@ -60,6 +62,8 @@ pipeline {
}
}
stage('Build Copr RPM') {
agent { label 'rpmbuild' }

when {
expression { build_rpm }
}
Expand Down

0 comments on commit ab3ef60

Please sign in to comment.