Finally fix the Jenkinsfile.

This commit is contained in:
git 2021-02-14 14:39:55 +01:00
parent 8f401fac63
commit ad8fae37e4
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 4 deletions

5
Jenkinsfile vendored
View File

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