mirror of
https://github.com/docker/compose.git
synced 2025-07-20 12:14:41 +02:00
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:
parent
0e28163ccb
commit
0291d9ade5
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -3,7 +3,7 @@
|
|||||||
def image
|
def image
|
||||||
|
|
||||||
def buildImage = { ->
|
def buildImage = { ->
|
||||||
wrappedNode(label: "linux && !zfs", cleanWorkspace: true) {
|
wrappedNode(label: "ubuntu && !zfs", cleanWorkspace: true) {
|
||||||
stage("build image") {
|
stage("build image") {
|
||||||
checkout(scm)
|
checkout(scm)
|
||||||
def imageName = "dockerbuildbot/compose:${gitCommit()}"
|
def imageName = "dockerbuildbot/compose:${gitCommit()}"
|
||||||
@ -30,7 +30,7 @@ def runTests = { Map settings ->
|
|||||||
}
|
}
|
||||||
|
|
||||||
{ ->
|
{ ->
|
||||||
wrappedNode(label: "linux && !zfs", cleanWorkspace: true) {
|
wrappedNode(label: "ubuntu && !zfs", cleanWorkspace: true) {
|
||||||
stage("test python=${pythonVersions} / docker=${dockerVersions}") {
|
stage("test python=${pythonVersions} / docker=${dockerVersions}") {
|
||||||
checkout(scm)
|
checkout(scm)
|
||||||
def storageDriver = sh(script: 'docker info | awk -F \': \' \'$1 == "Storage Driver" { print $2; exit }\'', returnStdout: true).trim()
|
def storageDriver = sh(script: 'docker info | awk -F \': \' \'$1 == "Storage Driver" { print $2; exit }\'', returnStdout: true).trim()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user