ium_478815/Jenkinsfile

12 lines
151 B
Plaintext
Raw Normal View History

2022-03-27 14:35:19 +02:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}