ium_464903/Jenkinsfile

10 lines
152 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 11:34:36 +01:00
}