jenkins: fixed bad subtitution in bootloader build and archive

BugzID: 72761

Signed-off-by: Marc Mattmueller <marc.mattmueller@netmodule.com>
This commit is contained in:
Marc Mattmueller 2021-05-20 08:05:55 +02:00
parent 7a132670d1
commit 0aed4eb233
1 changed files with 4 additions and 4 deletions

8
Jenkinsfile vendored
View File

@ -205,10 +205,10 @@ def buildAndArchive() {
else if (params.IMAGE_TYPE == 'bootloader') {
sh "bash -c '. ./env.common && bitbake virtual/bootloader'"
dir ('tmp/build-output') {
sh 'cp ${build_deploy}/*u-boot-${params.MACHINE}*.img . || true'
sh 'cp ${build_deploy}/*u-boot-${params.MACHINE}*.xmodem.bin . || true'
sh 'cp ${build_deploy}/imx-boot . || true'
sh 'cp ${build_deploy}/imx-boot.sd . || true'
sh "cp ${build_deploy}/*u-boot-${params.MACHINE}*.img . || true"
sh "cp ${build_deploy}/*u-boot-${params.MACHINE}*.xmodem.bin . || true"
sh "cp ${build_deploy}/imx-boot . || true"
sh "cp ${build_deploy}/imx-boot.sd . || true"
}
}
else if (params.IMAGE_TYPE == 'vcu') {