Skip to content

Commit 5b8fd47

Browse files
committed
Fixed error in Jenkinsfile with test versions for Arch and Ubuntu
1 parent 723fc54 commit 5b8fd47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ pipeline {
9090
script{
9191
dir("${env.WORKSPACE}/arch") {
9292
env.IID = "\$(docker images arch:$BUILD_NUMBER --format \"{{.ID}}\")"
93-
sh "docker run --net=host -i $IID /bin/bash -c './test-only.sh'"
93+
sh "docker run --net=host -i $IID /bin/bash -c './test-only-Arch.sh'"
9494
}
9595
}
9696
}
@@ -119,7 +119,7 @@ pipeline {
119119
script{
120120
dir("${env.WORKSPACE}/ubuntu/20.04") {
121121
env.IID = "\$(docker images ubuntu:$BUILD_NUMBER --format \"{{.ID}}\")"
122-
sh "docker run --net=host -i $IID /bin/bash -c './test-only-Arch.sh'"
122+
sh "docker run --net=host -i $IID /bin/bash -c './test-only.sh'"
123123
}
124124
}
125125
}

0 commit comments

Comments
 (0)