Skip to content

Commit

Permalink
Merge pull request #42257 from thaJeztah/20.10_backport_fix_testinspect
Browse files Browse the repository at this point in the history
[20.10 backport] Fix TestInspect(), and pin arm64 machines to a specific Ubuntu version
  • Loading branch information
tiborvass authored Apr 7, 2021
2 parents 88bd96d + f2c0b36 commit 76b0df9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ pipeline {
beforeAgent true
expression { params.arm64 }
}
agent { label 'arm64 && linux' }
agent { label 'arm64 && ubuntu-2004' }
environment {
TEST_SKIP_INTEGRATION_CLI = '1'
}
Expand Down
2 changes: 1 addition & 1 deletion integration/service/inspect_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func fullSwarmServiceSpec(name string, replicas uint64) swarmtypes.ServiceSpec {
Image: "busybox:latest",
Labels: map[string]string{"container-label": "container-value"},
Command: []string{"/bin/top"},
Args: []string{"-u", "root"},
Args: []string{"-d", "5"},
Hostname: "hostname",
Env: []string{"envvar=envvalue"},
Dir: "/work",
Expand Down

0 comments on commit 76b0df9

Please sign in to comment.