V10Lift/Jenkinsfile

12 lines
125 B
Text
Raw Normal View History

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