V10Lift/Jenkinsfile

11 lines
111 B
Text
Raw Normal View History

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