Skip to content

Commit b3aa239

Browse files
authored
Merge pull request #2761 from StefanScherer/no-wrappedNode
Remove wrappedNode
2 parents caef663 + 9556b89 commit b3aa239

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def buildImage = { name, buildargs, pyTag ->
1818
}
1919

2020
def buildImages = { ->
21-
wrappedNode(label: "amd64 && ubuntu-2004 && overlay2", cleanWorkspace: true) {
21+
node("amd64 && ubuntu-2004 && overlay2") {
2222
stage("build image") {
2323
checkout(scm)
2424

@@ -36,7 +36,7 @@ def buildImages = { ->
3636

3737
def getDockerVersions = { ->
3838
def dockerVersions = ["19.03.12"]
39-
wrappedNode(label: "amd64 && ubuntu-2004 && overlay2") {
39+
node("amd64 && ubuntu-2004 && overlay2") {
4040
def result = sh(script: """docker run --rm \\
4141
--entrypoint=python \\
4242
${imageNamePy3} \\
@@ -77,7 +77,7 @@ def runTests = { Map settings ->
7777
}
7878

7979
{ ->
80-
wrappedNode(label: "amd64 && ubuntu-2004 && overlay2", cleanWorkspace: true) {
80+
node("amd64 && ubuntu-2004 && overlay2") {
8181
stage("test python=${pythonVersion} / docker=${dockerVersion}") {
8282
checkout(scm)
8383
def dindContainerName = "dpy-dind-\$BUILD_NUMBER-\$EXECUTOR_NUMBER-${pythonVersion}-${dockerVersion}"

0 commit comments

Comments
 (0)