ium_464903/Jenkinsfile

12 lines
154 B
Plaintext
Raw Normal View History

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