ium_464915/Jenkinsfile

10 lines
151 B
Groovy

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