From 8bd3fdea8f01059940fb5e64fdc3a6457d7c72c3 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Mon, 26 Oct 2020 16:39:03 +0000 Subject: [PATCH] build: Move on-demand workers from bionic to groovy This is an interim step to be able to test io_uring on our CI system. See: #1561 Signed-off-by: Rob Bradford --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9eada4456..97dbda7e0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,7 @@ pipeline{ failFast true parallel { stage ('Worker build') { - agent { node { label 'bionic' } } + agent { node { label 'groovy' } } options { timeout(time: 1, unit: 'HOURS') } @@ -82,7 +82,7 @@ pipeline{ } } stage ('Worker build (musl)') { - agent { node { label 'bionic' } } + agent { node { label 'groovy' } } options { timeout(time: 1, unit: 'HOURS') } @@ -135,7 +135,7 @@ pipeline{ } } stage ('Worker build - Windows guest') { - agent { node { label 'bionic-win' } } + agent { node { label 'groovy-win' } } options { timeout(time: 1, unit: 'HOURS') }