File tree Expand file tree Collapse file tree 3 files changed +40
-24
lines changed Expand file tree Collapse file tree 3 files changed +40
-24
lines changed Original file line number Diff line number Diff line change
1
+ name : Mac OS CI
2
+
3
+ on : push
4
+
5
+ env :
6
+ MAVEN_ARGS : -V -B --no-transfer-progress -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
7
+
8
+ jobs :
9
+ mac :
10
+ name : ' Mac OS'
11
+ runs-on : macos-latest
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+ - name : ' Set up JDK 21'
15
+ uses : actions/setup-java@v4
16
+ with :
17
+ distribution : ' zulu'
18
+ java-version : 21
19
+ - name : ' Test'
20
+ run : ./mvnw ${MAVEN_ARGS} install
Original file line number Diff line number Diff line change 58
58
java-version : ${{ matrix.java }}
59
59
- name : ' Run integration tests'
60
60
run : ./mvnw ${MAVEN_ARGS} verify -pl integrationtest
61
- windows :
62
- name : ' Windows'
63
- runs-on : windows-latest
64
- steps :
65
- - uses : actions/checkout@v4
66
- - name : ' Set up JDK 21'
67
- uses : actions/setup-java@v4
68
- with :
69
- distribution : ' zulu'
70
- java-version : 21
71
- - name : ' Test'
72
- run : ./mvnw %MAVEN_ARGS% install
73
- mac :
74
- name : ' Mac OS'
75
- runs-on : macos-latest
76
- steps :
77
- - uses : actions/checkout@v3
78
- - name : ' Set up JDK 21'
79
- uses : actions/setup-java@v4
80
- with :
81
- distribution : ' zulu'
82
- java-version : 21
83
- - name : ' Test'
84
- run : ./mvnw ${MAVEN_ARGS} install
Original file line number Diff line number Diff line change
1
+ name : Windows CI
2
+
3
+ on : push
4
+
5
+ env :
6
+ MAVEN_ARGS : -V -B --no-transfer-progress -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
7
+
8
+ jobs :
9
+ windows :
10
+ name : ' Windows'
11
+ runs-on : windows-latest
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+ - name : ' Set up JDK 21'
15
+ uses : actions/setup-java@v4
16
+ with :
17
+ distribution : ' zulu'
18
+ java-version : 21
19
+ - name : ' Test'
20
+ run : ./mvnw %MAVEN_ARGS% install
You can’t perform that action at this time.
0 commit comments