ML Workshops Hello world Jenkinsfile

This commit is contained in:
Artur Nowakowski 2020-04-03 10:31:36 +02:00
parent f001500552
commit e2cce49fb7

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}