You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .travis.yml
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,20 @@
4
4
# Set up to run the Java build script per the Travis CI documentation
5
5
language: java
6
6
7
-
# Configure the build to use Oracle JDK 8
7
+
# Configure the build to using the minimum and the latest stable Oracle JDKs and Open JDKs
8
+
# Consider adding openjdk-ea and/or oraclejdk-ea to test early access JDKs
8
9
jdk:
10
+
- openjdk8
11
+
- openjdk11
9
12
- oraclejdk8
13
+
- oraclejdk11
14
+
- openjdk-ea
15
+
16
+
# Don't fail the build on the early access JDK, or wait for it to finish before marking it done.
17
+
matrix:
18
+
fast_finish: true
19
+
allow_failures:
20
+
- jdk: openjdk-ea
10
21
11
22
# Install the Ant JUnit package, which is missing from the Travis CI environment. See the Travis documentation: https://docs.travis-ci.com/user/installing-dependencies/#Adding-APT-Packages
12
23
addons:
@@ -33,16 +44,19 @@ deploy:
33
44
skip_cleanup: true
34
45
on:
35
46
branch: develop
47
+
jdk: oraclejdk8
36
48
# Create CHANGELOG.md in the current directory
37
49
- provider: script
38
50
script: ./travis/changelog.sh >> CHANGELOG.md
39
51
skip_cleanup: true
40
52
on:
41
53
tags: true
54
+
jdk: oraclejdk8
42
55
# Create a GitHub release and publish CHANGELOG.md to the release assets
0 commit comments