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

Commit 6d5a139

Browse files
committed
Enable Ubuntu Focal in Jenkinsfile
Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit f1a0fdb) Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 1d692ac4f41fb1340a6534f8fb32c8573713b36b Component: packaging
1 parent 782cbb1 commit 6d5a139

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

components/packaging/Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ def branch = env.CHANGE_TARGET ?: env.BRANCH_NAME
44

55
test_steps = [
66
'deb': { ->
7-
stage('Ubuntu Xenial Debian Package') {
7+
stage('Ubuntu Xenial and Focal Package') {
88
wrappedNode(label: 'ubuntu && x86_64', cleanWorkspace: true) {
99
try {
1010
checkout scm
1111
sh('git clone https://github.com/docker/cli.git')
1212
sh("git -C cli checkout $branch")
1313
sh('git clone https://github.com/docker/engine.git')
1414
sh("git -C engine checkout $branch")
15-
sh('make -C deb VERSION=0.0.1-dev ENGINE_DIR=$(pwd)/engine CLI_DIR=$(pwd)/cli ubuntu-xenial')
15+
sh('make -C deb VERSION=0.0.1-dev ENGINE_DIR=$(pwd)/engine CLI_DIR=$(pwd)/cli ubuntu-xenial ubuntu-focal')
1616
} finally {
1717
sh('make ENGINE_DIR=$(pwd)/engine clean-engine')
1818
}

0 commit comments

Comments
 (0)