ium_444517/Jenkinsfile

10 lines
154 B
Plaintext
Raw Normal View History

2022-03-21 11:06:31 +01:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}