s421818-mlworkshops/Jenkinsfile

11 lines
200 B
Plaintext
Raw Normal View History

2020-04-03 11:24:17 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
2020-04-03 11:33:46 +02:00
checkout: Check out from version control
2020-04-03 11:24:17 +02:00
}
}
}
}