This is an automated email from the ASF dual-hosted git repository.
tibordigana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
The following commit(s) were added to refs/heads/master by this push:
new b7208b5 removed JDK 9 and JDK 10 (using JDK 7, 8 and 11), and enabled
jenkinsNotify()
b7208b5 is described below
commit b7208b575c31121db6176c2b47c4ff29149047d5
Author: Tibor17 <[email protected]>
AuthorDate: Thu Oct 25 06:47:56 2018 +0200
removed JDK 9 and JDK 10 (using JDK 7, 8 and 11), and enabled
jenkinsNotify()
---
Jenkinsfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 9de3f2f..0098dd5 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -32,7 +32,7 @@ properties(
final def oses = ['linux':'ubuntu && !H24', 'windows':'Windows']
final def mavens = env.BRANCH_NAME == 'master' ? ['3.2.x', '3.3.x', '3.5.x'] :
['3.5.x']
-final def jdks = [7, 8, 9, 10, 11]
+final def jdks = [7, 8, 11]
final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
final def goals = ['clean', 'install', 'jacoco:report']
@@ -114,7 +114,7 @@ timeout(time: 12, unit: 'HOURS') {
throw e
} finally {
stage("notifications") {
- //jenkinsNotify()
+ jenkinsNotify()
}
}
}