MatterLink/Jenkinsfile

17 lines
409 B
Plaintext
Raw Normal View History

2018-02-10 18:10:12 +00:00
pipeline {
agent any
2018-02-10 18:07:31 +00:00
stages {
stage("1.11.2") {
steps {
sh './gradlew :1.11.2:setupCiWorkspace :1.11.2:clean :1.11.2:build'
archive '1.11.2/build/libs/*jar'
}
}
stage("1.12.2") {
steps {
sh './gradlew :1.12.2:setupCiWorkspace :1.12.2:clean :1.12.2:build'
archive '1.12.2/build/libs/*jar'
}
}
}
}