From 30635cbfd985c219dc2704d2fef3d24f64eaa814 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 22 Apr 2020 17:38:37 +0200 Subject: [PATCH] Jenkinsfile: use docker/docker instead of docker/engine The release branches have moved back to the upstream docker/docker repository, so we should use that as source instead of the docker/engine fork (and rely on it being synced with upstream) Signed-off-by: Sebastiaan van Stijn --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4d5f7eeeb6..d9e0d43bf9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ test_steps = [ checkout scm sh('git clone https://github.com/docker/cli.git') sh("git -C cli checkout $branch") - sh('git clone https://github.com/docker/engine.git') + sh('git clone https://github.com/docker/docker.git engine') sh("git -C engine checkout $branch") sh('make -C deb VERSION=0.0.1-dev ENGINE_DIR=$(pwd)/engine CLI_DIR=$(pwd)/cli ubuntu-xenial ubuntu-focal') } finally { @@ -26,7 +26,7 @@ test_steps = [ checkout scm sh('git clone https://github.com/docker/cli.git') sh("git -C cli checkout $branch") - sh('git clone https://github.com/docker/engine.git') + sh('git clone https://github.com/docker/docker.git engine') sh("git -C engine checkout $branch") sh('make -C rpm VERSION=0.0.1-dev ENGINE_DIR=$(pwd)/engine CLI_DIR=$(pwd)/cli centos-7') } finally { @@ -42,7 +42,7 @@ test_steps = [ checkout scm sh('git clone https://github.com/docker/cli.git') sh("git -C cli checkout $branch") - sh('git clone https://github.com/docker/engine.git') + sh('git clone https://github.com/docker/docker.git engine') sh("git -C engine checkout $branch") sh('make VERSION=0.0.1-dev DOCKER_BUILD_PKGS=static-linux ENGINE_DIR=$(pwd)/engine CLI_DIR=$(pwd)/cli static') } finally {