ium_434804/Jenkinsfile

11 lines
155 B
Plaintext
Raw Normal View History

2021-03-28 19:38:34 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}