diff --git a/centreon-plugins/Jenkinsfile b/centreon-plugins/Jenkinsfile index 092ff47e6..fcce4c603 100644 --- a/centreon-plugins/Jenkinsfile +++ b/centreon-plugins/Jenkinsfile @@ -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' } }