diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2018-01-31 17:33:43 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2018-01-31 17:33:43 +0100 |
commit | b13cb0cf8fc369a1b3d26a8e4e227bc5a4661654 (patch) | |
tree | d6700e2873277fe97ffaf237f8eb87fd2b83a937 | |
parent | 9adbef89490811c6438cf2aa7f89246ee23f8510 (diff) | |
download | jenkinsfiles-b13cb0cf8fc369a1b3d26a8e4e227bc5a4661654.tar.gz |
edk2: try fix tests
-rw-r--r-- | jenkinsfile.edk2 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/jenkinsfile.edk2 b/jenkinsfile.edk2 index 635d9bf..a67c626 100644 --- a/jenkinsfile.edk2 +++ b/jenkinsfile.edk2 @@ -17,21 +17,21 @@ def BuildX64(tag, args) { def TestSimpleX64(tag, args) { dir (tag) { - unstash "$tag" + unstash tag } sh """ scripts/qemu-boot-kernel $args \ - -bios $stash/*/FV/OVMF.fd + -bios $tag/*/FV/OVMF.fd """ } def TestFlashX64(tag, args) { dir (tag) { - unstash name: tag + unstash tag } sh """ - code=\$(echo $stash/*/FV/OVMF_CODE.fd) - vars=\$(echo $stash/*/FV/OVMF_VARS.fd) + code=\$(echo $tag/*/FV/OVMF_CODE.fd) + vars=\$(echo $tag/*/FV/OVMF_VARS.fd) scripts/qemu-boot-kernel $args \ -drive file=\${code},if=pflash,format=raw,unit=0,readonly=on \ -drive file=\${vars},if=pflash,format=raw,unit=1 |