From b49c7dfd6534c0639258cdc89e1d1f372aa37faf Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Fri, 8 Jan 2021 16:47:05 +0100 Subject: [PATCH] ci: Always download the Windows image Because we're back on transient builder, let's download the image everytime. This reverts commit b5653d52787a0be5f58d557fb06ff798ac280c45. Signed-off-by: Sebastien Boeuf --- Jenkinsfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index b9034f5b9..d4a53b1f4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -144,6 +144,21 @@ pipeline{ checkout scm } } + stage ('Download assets') { + steps { + sh "mkdir ${env.HOME}/workloads" + azureDownload(storageCredentialId: 'ch-image-store', + containerName: 'private-images', + includeFilesPattern: 'OVMF.fd', + downloadType: 'container', + downloadDirLoc: "${env.HOME}/workloads") + azureDownload(storageCredentialId: 'ch-image-store', + containerName: 'private-images', + includeFilesPattern: 'windows-server-2019.raw', + downloadType: 'container', + downloadDirLoc: "${env.HOME}/workloads") + } + } stage ('Run Windows guest integration tests') { options { timeout(time: 1, unit: 'HOURS')