From 8bdf59bbeead9f198c079cb77c134c22e387885f Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 6 Sep 2023 11:29:47 +0100 Subject: [PATCH] build: Use focal version of azure-cli client on aarch64 The worker is running focal not bionic - this fixes build issues on that worker machine due to the bionic version not being installable. Signed-off-by: Rob Bradford --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7733233ae..c432f017a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -207,7 +207,7 @@ pipeline { } stage('Install azure-cli') { steps { - installAzureCli('bionic', 'arm64') + installAzureCli('focal', 'arm64') } } stage('Download Windows image') {