fix label python

This commit is contained in:
Yadciel 2023-04-26 10:59:56 +02:00
parent 9595305c20
commit 2588a87a24

View File

@ -1,5 +1,7 @@
pipeline {
agent any
agent {
label 'python' // Verwendet den Jenkins-Agenten mit dem Label 'python'
}
stages {
stage('Build') {
steps {
@ -24,4 +26,3 @@ pipeline {
}
}
}