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

Commit dbf2974

Browse files
committed
fix(ci):alma8 enabled (#721)
1 parent e53d106 commit dbf2974

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Jenkinsfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ try {
6969
stash name: 'el7-rpms', includes: "output/x86_64/*.rpm"
7070
archiveArtifacts artifacts: "output/x86_64/*.rpm"
7171
}
72-
}/*,
73-
'build centos8': {
72+
},
73+
'build alma8': {
7474
node("C++") {
7575
checkoutCentreonBuild()
76-
sh "./centreon-build/jobs/broker/${serie}/mon-broker-unittest.sh centos8"
76+
sh "./centreon-build/jobs/broker/${serie}/mon-broker-unittest.sh alma8"
7777
step([
7878
$class: 'XUnitBuilder',
7979
thresholds: [
@@ -84,14 +84,14 @@ try {
8484
])
8585
}
8686
},
87-
'packaging centos8': {
87+
'packaging alma8': {
8888
node("C++") {
8989
checkoutCentreonBuild()
90-
sh "./centreon-build/jobs/broker/${serie}/mon-broker-package.sh centos8"
91-
stash name: 'el8-rpms', includes: "output/x86_64/*.rpm"
90+
sh "./centreon-build/jobs/broker/${serie}/mon-broker-package.sh alma8"
91+
stash name: 'alma8-rpms', includes: "output/x86_64/*.rpm"
9292
archiveArtifacts artifacts: "output/x86_64/*.rpm"
9393
}
94-
}*/
94+
}
9595
if ((currentBuild.result ?: 'SUCCESS') != 'SUCCESS') {
9696
error('Build // Unit tests // Packaging.');
9797
}
@@ -116,7 +116,7 @@ try {
116116
stage('Delivery') {
117117
node("C++") {
118118
unstash 'el7-rpms'
119-
//unstash 'el8-rpms'
119+
unstash 'alma8-rpms'
120120
checkoutCentreonBuild()
121121
sh "./centreon-build/jobs/broker/${serie}/mon-broker-delivery.sh"
122122
}

0 commit comments

Comments
 (0)