ium_478839/pipeline.jeniknsfile
2022-03-21 11:27:03 +01:00

10 lines
154 B
Plaintext

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}