Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 9efc9eb

Browse files
committed
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 <github@gone.nl> (cherry picked from commit 30635cb) Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: f52632405e418b76b9605c7cd5bb355ae5dbd526 Component: packaging
1 parent dc09faf commit 9efc9eb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

components/packaging/Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test_steps = [
1010
checkout scm
1111
sh('git clone https://github.com/docker/cli.git')
1212
sh("git -C cli checkout $branch")
13-
sh('git clone https://github.com/docker/engine.git')
13+
sh('git clone https://github.com/docker/docker.git engine')
1414
sh("git -C engine checkout $branch")
1515
sh('make -C deb VERSION=0.0.1-dev ENGINE_DIR=$(pwd)/engine CLI_DIR=$(pwd)/cli ubuntu-xenial ubuntu-focal')
1616
} finally {
@@ -26,7 +26,7 @@ test_steps = [
2626
checkout scm
2727
sh('git clone https://github.com/docker/cli.git')
2828
sh("git -C cli checkout $branch")
29-
sh('git clone https://github.com/docker/engine.git')
29+
sh('git clone https://github.com/docker/docker.git engine')
3030
sh("git -C engine checkout $branch")
3131
sh('make -C rpm VERSION=0.0.1-dev ENGINE_DIR=$(pwd)/engine CLI_DIR=$(pwd)/cli centos-7')
3232
} finally {
@@ -42,7 +42,7 @@ test_steps = [
4242
checkout scm
4343
sh('git clone https://github.com/docker/cli.git')
4444
sh("git -C cli checkout $branch")
45-
sh('git clone https://github.com/docker/engine.git')
45+
sh('git clone https://github.com/docker/docker.git engine')
4646
sh("git -C engine checkout $branch")
4747
sh('make VERSION=0.0.1-dev DOCKER_BUILD_PKGS=static-linux ENGINE_DIR=$(pwd)/engine CLI_DIR=$(pwd)/cli static')
4848
} finally {

0 commit comments

Comments
 (0)