From 4d85caf1439476884d29f4decf9e78603ced8fd5 Mon Sep 17 00:00:00 2001 From: Joffrey F Date: Mon, 14 Nov 2016 17:23:25 -0800 Subject: [PATCH] Limit testing pool to Ubuntu hosts to avoid errors with dind not starting properly. Signed-off-by: Joffrey F --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5de9a3fb1..19ccb4bbc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ def checkDocs = { -> } def buildImage = { -> - wrappedNode(label: "linux && !zfs") { + wrappedNode(label: "ubuntu && !zfs", cleanWorkspace: true) { stage("build image") { deleteDir(); checkout(scm) def imageName = "dockerbuildbot/compose:${gitCommit()}" @@ -37,7 +37,7 @@ def runTests = { Map settings -> } { -> - wrappedNode(label: "linux && !zfs") { + wrappedNode(label: "ubuntu && !zfs", cleanWorkspace: true) { stage("test python=${pythonVersions} / docker=${dockerVersions}") { deleteDir(); checkout(scm) def storageDriver = sh(script: 'docker info | awk -F \': \' \'$1 == "Storage Driver" { print $2; exit }\'', returnStdout: true).trim()