ium_z444510/Jenkinsfile

10 lines
152 B
Plaintext
Raw Normal View History

2023-03-25 13:44:43 +01:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}