ium_z487174/Jenkinsfile

11 lines
150 B
Groovy

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