Use dir() in the Jenkinsfile.

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

2
Jenkinsfile vendored
View File

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