ium_z487174/Jenkinsfile

12 lines
151 B
Groovy

pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
}
}
}
}