From ad8fae37e4f9d2f79bf17b5ca738d9b4d204d993 Mon Sep 17 00:00:00 2001 From: git Date: Sun, 14 Feb 2021 14:39:55 +0100 Subject: [PATCH] Finally fix the Jenkinsfile. --- Jenkinsfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4d61aa2..4c3843a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,10 +27,7 @@ pipeline { steps { echo 'Deploying....' dir('cmake-build-release') { archiveArtifacts artifacts:'*.deb, *.rpm, *.tar.gz, *.sh', fingerprint: false } - dir('cmake-build-release-arm') { - dir('ARMDir') { sh 'cp ../*.tar.gz ../*.sh .'} - zip zipFile: './Linux-ARM.zip', archive: true, dir: './Linux-ARM' - } + zip zipFile: './Linux-ARM.zip', archive: true, glob: "*.tar.gz, *.sh" dir('cmake-build-release-win32') { archiveArtifacts artifacts:'*.exe', fingerprint: false } } }