ium_478839/Jenkinsfile

10 lines
154 B
Plaintext
Raw Normal View History

2022-03-27 13:22:47 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}