From a43123cab1368fa1dab972481a2951ddbe1e2c66 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Fri, 9 Aug 2019 20:24:00 +0200 Subject: [PATCH] Consistently use DOCKER_EXPERIMENTAL=1 instead or =y Signed-off-by: Sebastiaan van Stijn --- Jenkinsfile | 2 +- hack/ci/experimental | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d12a6f3ab5..7cdb566cac 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -246,7 +246,7 @@ pipeline { docker run --rm -t --privileged \ -v "$WORKSPACE/bundles:/go/src/github.com/docker/docker/bundles" \ --name docker-pr$BUILD_NUMBER \ - -e DOCKER_EXPERIMENTAL=y \ + -e DOCKER_EXPERIMENTAL=1 \ -e DOCKER_GITCOMMIT=${GIT_COMMIT} \ -e DOCKER_GRAPHDRIVER \ docker:${GIT_COMMIT}-exp \ diff --git a/hack/ci/experimental b/hack/ci/experimental index 9ccbc8425f..10297c7dc9 100755 --- a/hack/ci/experimental +++ b/hack/ci/experimental @@ -2,7 +2,7 @@ # Entrypoint for jenkins experimental CI set -eu -o pipefail -export DOCKER_EXPERIMENTAL=y +export DOCKER_EXPERIMENTAL=1 hack/make.sh \ binary-daemon \