indicate that packaging is not CentOS7-only in Jenkinsfile

This commit is contained in:
Matthieu Kermagoret 2018-11-07 13:55:01 +01:00
parent eaedbe8267
commit ae101c5faa
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -13,10 +13,10 @@ stage('Source') {
try { try {
stage('Package') { stage('Package') {
parallel 'centos7': { parallel 'all': {
node { node {
sh 'setup_centreon_build.sh' sh 'setup_centreon_build.sh'
sh './centreon-build/jobs/plugins/plugins-package.sh centos7' sh './centreon-build/jobs/plugins/plugins-package.sh'
} }
} }
if ((currentBuild.result ?: 'SUCCESS') != 'SUCCESS') { if ((currentBuild.result ?: 'SUCCESS') != 'SUCCESS') {