ium_151636/Jenkinsfile

12 lines
151 B
Plaintext
Raw Normal View History

2023-03-22 14:06:59 +01:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}