V10Lift/Jenkinsfile
2020-02-25 15:10:44 +01:00

11 lines
125 B
Groovy

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