ium_444517/Jenkinsfile

10 lines
154 B
Groovy

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