File tree Expand file tree Collapse file tree 1 file changed +6
-17
lines changed Expand file tree Collapse file tree 1 file changed +6
-17
lines changed Original file line number Diff line number Diff line change @@ -25,30 +25,19 @@ jobs:
25
25
strategy :
26
26
matrix :
27
27
os : [ubuntu-latest,windows-latest, macOS-latest]
28
- java : [8, 11, 16, 17-ea ]
29
- jdk : [adopt-hotspot , zulu, adopt-openj9]
28
+ java : [8, 11, 17 ]
29
+ jdk : [temurin , zulu, adopt-openj9]
30
30
fail-fast : false
31
31
32
32
runs-on : ${{ matrix.os }}
33
33
34
34
steps :
35
- - name : Checkout
36
- uses : actions/checkout@v2
37
-
38
- - name : Set up cache for ~./m2/repository
39
- uses : actions/cache@v2.1.6
40
- with :
41
- path : ~/.m2/repository
42
- key : maven-${{ matrix.os }}-java${{ matrix.java }}-${{ hashFiles('**/pom.xml') }}
43
- restore-keys : |
44
- maven-${{ matrix.os }}-java${{ matrix.java }}-
45
- maven-${{ matrix.os }}-
46
-
47
- - name : Set up JDK
48
- uses : actions/setup-java@v2.3.1
35
+ - uses : actions/checkout@v2
36
+ - uses : actions/setup-java@v2
49
37
with :
50
38
distribution : ${{ matrix.jdk }}
51
39
java-version : ${{ matrix.java }}
40
+ cache : ' maven'
52
41
53
42
- name : Build with Maven
54
- run : mvn install javadoc:javadoc -e -B -V -Pno-tests-if-not-on-osx
43
+ run : mvn install javadoc:javadoc site -e -B -V -Pno-tests-if-not-on-osx
You can’t perform that action at this time.
0 commit comments