s152203-mlworkshops/Jenkinsfile
Yevheniia Tsapkova 8354ca662c jenkins file added
2020-04-03 11:33:45 +02:00

11 lines
133 B
Groovy

pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}