ium_440058/Jenkinsfile

10 lines
152 B
Plaintext
Raw Normal View History

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