ium_z487174/Jenkinsfile

11 lines
150 B
Plaintext
Raw Normal View History

2023-03-25 13:40:09 +01:00
pipeline {
2023-03-25 13:42:33 +01:00
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
2023-03-25 13:40:09 +01:00
}