ium_464915/Jenkinsfile

10 lines
151 B
Plaintext
Raw Normal View History

2024-03-26 17:54:56 +01:00
pipeline {
2024-03-26 17:59:55 +01:00
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello World'
}
}
}
2024-03-26 17:54:56 +01:00
}