Limit testing pool to Ubuntu hosts to avoid errors with dind not starting properly.

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2016-11-14 17:23:25 -08:00
parent efda1efffe
commit 4d85caf143
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -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()