Archive the ARM binaries correctly.
This commit is contained in:
parent
20ddcd39b0
commit
756c9f49e9
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
@ -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 }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user