ium_444380/Jenkinsfile

11 lines
150 B
Plaintext
Raw Normal View History

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