ium_464903/Jenkinsfile

11 lines
153 B
Plaintext
Raw Normal View History

2024-03-20 11:17:00 +01:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}