From c8a487173af6af4dcdcd4d844d254deba4269a0e Mon Sep 17 00:00:00 2001 From: Zakaria Guennoune <83596451+zguennoune02@users.noreply.github.com> Date: Tue, 8 Mar 2022 13:05:56 +0100 Subject: [PATCH] Update Jenkinsfile (#3530) --- centreon-plugins/Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/centreon-plugins/Jenkinsfile b/centreon-plugins/Jenkinsfile index fcce4c603..f6630afdd 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-alma8.tar.gz' stash name: "rpms-centos7", includes: 'output-centos7/noarch/*.rpm' - //stash name: "rpms-centos8", includes: 'output-centos8/noarch/*.rpm' + stash name: "rpms-alma8", includes: 'output-alma8/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-alma8' sh './centreon-build/jobs/plugins/plugins-delivery.sh' } }