s452111-mlworkshops/Jenkinsfile

11 lines
127 B
Plaintext
Raw Normal View History

2020-04-03 14:50:49 +02:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}