ium_487184/Jenkinsfile

12 lines
156 B
Plaintext
Raw Normal View History

2023-04-21 15:03:48 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}