From 35d3c1f611f67f24cc7ac560f9a4e1257913ea66 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Fri, 10 Dec 2021 15:24:27 +0000 Subject: [PATCH] build: Switch base to hirsute as an experiment As an experiment switch back to hirsute to see if the CI failure / timeout rate decreases. Signed-off-by: Rob Bradford --- Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a4797d281..4539a78ed 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,7 +24,7 @@ pipeline{ stage ('Build') { parallel { stage ('Worker build') { - agent { node { label 'impish' } } + agent { node { label 'hirsute' } } environment { AZURE_CONNECTION_STRING = credentials('46b4e7d6-315f-4cc1-8333-b58780863b9b') } @@ -87,7 +87,7 @@ pipeline{ } } stage ('Worker build (musl)') { - agent { node { label 'impish' } } + agent { node { label 'hirsute' } } environment { AZURE_CONNECTION_STRING = credentials('46b4e7d6-315f-4cc1-8333-b58780863b9b') } @@ -187,7 +187,7 @@ pipeline{ } } stage ('Worker build - Windows guest') { - agent { node { label 'impish' } } + agent { node { label 'hirsute' } } environment { AZURE_CONNECTION_STRING = credentials('46b4e7d6-315f-4cc1-8333-b58780863b9b') } @@ -227,7 +227,7 @@ pipeline{ } } stage ('Worker build - Live Migration') { - agent { node { label 'impish-small' } } + agent { node { label 'hirsute-small' } } stages { stage ('Checkout') { steps { @@ -296,4 +296,4 @@ def installAzureCli() { sh "echo \"deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ hirsute main\" | sudo tee /etc/apt/sources.list.d/azure-cli.list" sh "sudo apt update" sh "sudo apt install -y azure-cli" -} \ No newline at end of file +}