Archive the ARM binaries correctly.

This commit is contained in:
git 2021-02-14 14:27:19 +01:00
parent 20ddcd39b0
commit 756c9f49e9
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1

5
Jenkinsfile vendored
View File

@ -27,7 +27,10 @@ pipeline {
steps {
echo 'Deploying....'
dir('cmake-build-release') { archiveArtifacts artifacts:'*.deb, *.rpm, *.tar.gz, *.sh', fingerprint: false }
dir('cmake-build-release-arm') { archiveArtifacts artifacts:'*.tar.gz, *.sh', fingerprint: false }
dir('cmake-build-release-arm') {
sh 'mkdir ./ARMDir && cp *.tar.gz *.sh ./ARMDir'
zip zipFile: './Linux-ARM.zip', archive: true, dir: './Linux-ARM'
}
dir('cmake-build-release-win32') { archiveArtifacts artifacts:'*.exe', fingerprint: false }
}
}