11 lines
118 B
Groovy

pipeline {
agent any
stages {
stage('Example') {
steps {
echo 'hello world'
}
}
}
}