MatterLink/Jenkinsfile

42 lines
1.2 KiB
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 {
2018-05-07 22:45:34 +00:00
stage("init") {
steps {
sh 'git submodule update --init --recursive'
}
}
2018-02-17 22:53:45 +00:00
stage("1.7.10") {
steps {
sh './gradlew :1.7.10:setupCiWorkspace'
sh './gradlew :1.7.10:clean'
sh './gradlew :1.7.10:build'
archiveArtifacts artifacts: '1.7.10/build/libs/*jar'
2018-02-17 22:53:45 +00:00
}
}
2018-02-11 15:33:19 +00:00
stage("1.10.2") {
steps {
sh './gradlew :1.10.2:setupCiWorkspace'
sh './gradlew :1.10.2:clean'
sh './gradlew :1.10.2:build'
archiveArtifacts artifacts: '1.10.2/build/libs/*jar'
2018-02-11 15:33:19 +00:00
}
}
2018-02-10 18:07:31 +00:00
stage("1.11.2") {
steps {
2018-02-10 19:06:42 +00:00
sh './gradlew :1.11.2:setupCiWorkspace'
sh './gradlew :1.11.2:clean'
sh './gradlew :1.11.2:build'
archiveArtifacts artifacts: '1.11.2/build/libs/*jar'
2018-02-10 18:07:31 +00:00
}
}
stage("1.12.2") {
steps {
2018-02-10 19:06:42 +00:00
sh './gradlew :1.12.2:setupCiWorkspace'
sh './gradlew :1.12.2:clean'
sh './gradlew :1.12.2:build'
archiveArtifacts artifacts: '1.12.2/build/libs/*jar'
2018-02-10 18:07:31 +00:00
}
}
}
}