Merge pull request #83 from kemitix/jenkins

Jenkins
This commit is contained in:
Paul Campbell 2018-05-14 20:14:29 +01:00 committed by GitHub
commit 373df9be06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 6 deletions

View file

@ -1,17 +1,13 @@
CHANGELOG CHANGELOG
========= =========
4.2.0 4.1.0
----- -----
* EmptyLineSeparator: disabled * EmptyLineSeparator: disabled
* Upgrade `tiles-maven-plugin` to 2.11 * Upgrade `tiles-maven-plugin` to 2.11
* Upgrade `checkstyle` to 8.10 * Upgrade `checkstyle` to 8.10
* Upgrade `sevntu-checkstyle` to 1.29.0 * Upgrade `sevntu-checkstyle` to 1.29.0
4.1.0
-----
* Upgrade `secntu-checkstyle` to 1.27.0 * Upgrade `secntu-checkstyle` to 1.27.0
* Upgrade `checkstyle` to 8.7 (properly now that it is supported by sevntu) * Upgrade `checkstyle` to 8.7 (properly now that it is supported by sevntu)

View file

@ -1,4 +1,5 @@
final String mvn = "mvn --batch-mode --update-snapshots" final String mvn = "mvn --batch-mode --update-snapshots --errors"
final dependenciesSupportJDK=9
pipeline { pipeline {
agent any agent any
@ -66,11 +67,20 @@ pipeline {
} }
} }
stage('Build Java 9') { stage('Build Java 9') {
when { expression { dependenciesSupportJDK >= 9 } }
steps { steps {
withMaven(maven: 'maven', jdk: 'JDK 9') { withMaven(maven: 'maven', jdk: 'JDK 9') {
sh "${mvn} clean verify -Djava.version=9" sh "${mvn} clean verify -Djava.version=9"
} }
} }
} }
stage('Build Java 10') {
when { expression { dependenciesSupportJDK >= 10 } }
steps {
withMaven(maven: 'maven', jdk: 'JDK 10') {
sh "${mvn} clean verify -Djava.version=10"
}
}
}
} }
} }