Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
fix(ci):alma8 enabled (#721)
Browse files Browse the repository at this point in the history
  • Loading branch information
chgautier committed Mar 10, 2022
1 parent e53d106 commit dbf2974
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ try {
stash name: 'el7-rpms', includes: "output/x86_64/*.rpm"
archiveArtifacts artifacts: "output/x86_64/*.rpm"
}
}/*,
'build centos8': {
},
'build alma8': {
node("C++") {
checkoutCentreonBuild()
sh "./centreon-build/jobs/broker/${serie}/mon-broker-unittest.sh centos8"
sh "./centreon-build/jobs/broker/${serie}/mon-broker-unittest.sh alma8"
step([
$class: 'XUnitBuilder',
thresholds: [
Expand All @@ -84,14 +84,14 @@ try {
])
}
},
'packaging centos8': {
'packaging alma8': {
node("C++") {
checkoutCentreonBuild()
sh "./centreon-build/jobs/broker/${serie}/mon-broker-package.sh centos8"
stash name: 'el8-rpms', includes: "output/x86_64/*.rpm"
sh "./centreon-build/jobs/broker/${serie}/mon-broker-package.sh alma8"
stash name: 'alma8-rpms', includes: "output/x86_64/*.rpm"
archiveArtifacts artifacts: "output/x86_64/*.rpm"
}
}*/
}
if ((currentBuild.result ?: 'SUCCESS') != 'SUCCESS') {
error('Build // Unit tests // Packaging.');
}
Expand All @@ -116,7 +116,7 @@ try {
stage('Delivery') {
node("C++") {
unstash 'el7-rpms'
//unstash 'el8-rpms'
unstash 'alma8-rpms'
checkoutCentreonBuild()
sh "./centreon-build/jobs/broker/${serie}/mon-broker-delivery.sh"
}
Expand Down

0 comments on commit dbf2974

Please sign in to comment.