s452108-mlworkshops/jenkinsfile

13 lines
141 B
Plaintext
Raw Normal View History

2020-04-03 11:12:27 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello World1111'
}
}
}
}