Adjusting Jenkinsfiles to Linux cluster

This commit is contained in:
Matthias Koefferlein 2023-02-24 14:47:23 +01:00
parent 82f9a7543d
commit 3ac791234a
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
properties([disableConcurrentBuilds()])
node("master") {
node("linux") {
stage("Checkout sources") {
checkout scm

View File

@ -3,7 +3,7 @@
properties([disableConcurrentBuilds()])
node("master") {
node("linux") {
stage("Checkout sources") {
checkout scm

View File

@ -14,7 +14,7 @@ currentBuild.description = "PyPI deployment " + platform
docker_image = "jenkins-manylinux2014_x86_64-pypi"
target = platform + ".whl"
node("master") {
node("linux") {
stage("Checkout sources") {
checkout scm