iumKC/Jenkinsfile

10 lines
161 B
Plaintext
Raw Normal View History

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