Skip to content

Commit

Permalink
remove ub32, add fedora
Browse files Browse the repository at this point in the history
  • Loading branch information
garyjg committed Dec 17, 2024
1 parent 9400236 commit 50cd76f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pipeline {

stages {

stage('Running CentOS8, CentOS9, Ubuntu32') {
stage('Running CentOS8, CentOS9', 'Fedora') {

parallel {

Expand Down Expand Up @@ -86,10 +86,10 @@ pipeline {
}
}

stage('ub32') {
stage('Fedora') {
agent {
node {
label 'ub32'
label 'fedora'
}
}
stages {
Expand All @@ -98,13 +98,16 @@ pipeline {
sh 'scons test'
}
}
stage('Build Debian packages') {
stage('Build RPM packages') {
steps {
sh 'scripts/build_dpkg.sh -I bionic i386'
sh './jenkins.sh build_rpms'
}
}
// Don't bother signing or pushing rpms on Fedora, just test rpm
// build.
}
}

}
}
}
Expand Down

0 comments on commit 50cd76f

Please sign in to comment.