V10Lift/Jenkinsfile

12 lines
125 B
Text
Raw Normal View History

2020-02-25 14:07:24 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
2020-02-25 14:10:44 +00:00
echo 'Building V10Lift...'
2020-02-25 14:07:24 +00:00
}
}
}
2020-02-25 14:10:44 +00:00
}