ium_s449288/Jenkinsfile

11 lines
155 B
Plaintext
Raw Normal View History

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