s416122-mlworkshops/Jenkinsfile

11 lines
133 B
Plaintext
Raw Normal View History

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