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 } } }