jenkins: added wildcard after machine type for the bootloader image

The bootloader package of HW20 was empty as its namne is postfixed
with -v1 which differs to the other am335x images.

BugzID: 71427

Signed-off-by: Marc Mattmueller <marc.mattmueller@netmodule.com>
This commit is contained in:
Marc Mattmueller 2021-05-04 13:18:14 +02:00
parent 84eb0cdf58
commit 8ceb9fb75b
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

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