s4520929-mlworkshops/Jenkinsfile

11 lines
135 B
Plaintext
Raw Normal View History

2020-04-03 11:29:20 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello World'
}
}
}
}