V10Lift/Jenkinsfile

11 lines
111 B
Text
Raw Normal View History

2020-02-25 15:07:24 +01:00
pipeline {
agent any
stages {
stage('Build') {
steps {
build 'Build'
}
}
}
}