use overlay2 for janky and experimental checks

instead of vfs

Signed-off-by: Andrew Hsu <andrewhsu@docker.com>
This commit is contained in:
Andrew Hsu 2019-07-23 00:41:44 +00:00
parent 8297dc26e6
commit ccfaf1ed92
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -74,7 +74,7 @@ pipeline {
-v "$WORKSPACE/.git:/go/src/github.com/docker/docker/.git" \ -v "$WORKSPACE/.git:/go/src/github.com/docker/docker/.git" \
--name docker-pr$BUILD_NUMBER \ --name docker-pr$BUILD_NUMBER \
-e DOCKER_GITCOMMIT=${GITCOMMIT} \ -e DOCKER_GITCOMMIT=${GITCOMMIT} \
-e DOCKER_GRAPHDRIVER=vfs \ -e DOCKER_GRAPHDRIVER=overlay2 \
-e GIT_SHA1=${GIT_COMMIT} \ -e GIT_SHA1=${GIT_COMMIT} \
docker:$GITCOMMIT \ docker:$GITCOMMIT \
hack/ci/janky hack/ci/janky
@ -124,7 +124,7 @@ pipeline {
-e DOCKER_EXPERIMENTAL=y \ -e DOCKER_EXPERIMENTAL=y \
--name docker-pr-exp$BUILD_NUMBER \ --name docker-pr-exp$BUILD_NUMBER \
-e DOCKER_GITCOMMIT=${GITCOMMIT} \ -e DOCKER_GITCOMMIT=${GITCOMMIT} \
-e DOCKER_GRAPHDRIVER=vfs \ -e DOCKER_GRAPHDRIVER=overlay2 \
docker:${GITCOMMIT}-exp \ docker:${GITCOMMIT}-exp \
hack/ci/experimental hack/ci/experimental
''' '''