s152483-mlworkshops/Jenkinsfile

11 lines
133 B
Plaintext
Raw Normal View History

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