fix(chore): disable centos8 (#3448)

This commit is contained in:
sc979 2022-01-31 21:46:37 +01:00 committed by GitHub
parent 746e07a49f
commit e5e2554e6d
1 changed files with 3 additions and 3 deletions

View File

@ -35,9 +35,9 @@ stage('RPM Packaging') {
sh 'setup_centreon_build.sh'
sh './centreon-build/jobs/plugins/plugins-package.sh'
archiveArtifacts artifacts: 'rpms-centos7.tar.gz'
archiveArtifacts artifacts: 'rpms-centos8.tar.gz'
//archiveArtifacts artifacts: 'rpms-centos8.tar.gz'
stash name: "rpms-centos7", includes: 'output-centos7/noarch/*.rpm'
stash name: "rpms-centos8", includes: 'output-centos8/noarch/*.rpm'
//stash name: "rpms-centos8", includes: 'output-centos8/noarch/*.rpm'
sh 'rm -rf output'
}
}
@ -51,7 +51,7 @@ stage('RPM Delivery') {
node {
sh 'setup_centreon_build.sh'
unstash 'rpms-centos7'
unstash 'rpms-centos8'
//unstash 'rpms-centos8'
sh './centreon-build/jobs/plugins/plugins-delivery.sh'
}
}