Files
docs/Jenkinsfile

10 lines
146 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building'
}
}
}
}