ium_z487174/Jenkinsfile

12 lines
151 B
Plaintext
Raw Normal View History

2023-03-25 13:47:27 +01:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
2023-03-25 13:43:53 +01:00
}
2023-03-25 13:47:27 +01:00
}