s152203-mlworkshops/Jenkinsfile

16 lines
245 B
Plaintext
Raw Normal View History

2020-04-03 11:33:45 +02:00
pipeline {
agent any
stages {
2020-04-03 12:21:32 +02:00
stage('checkout'){
steps {
echo 'Check out from version control'
}
}
2020-04-03 11:33:45 +02:00
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}