ium_s434700/Jenkinsfile

10 lines
154 B
Plaintext
Raw Normal View History

2021-03-25 13:29:44 +01:00
pipeline {
2021-03-27 15:56:49 +01:00
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
2021-03-25 13:29:44 +01:00
}