ium_478831/jenkinsfile

12 lines
151 B
Plaintext
Raw Normal View History

2022-03-21 11:05:14 +01:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}