File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,14 @@ permissions:
10
10
11
11
jobs :
12
12
build :
13
- # Do we want wide matrix build? For now, limited
13
+ # Do we want wide matrix build? For now, more limited
14
14
runs-on : ${{ matrix.os }}
15
15
strategy :
16
16
fail-fast : false
17
17
matrix :
18
18
java_version : ['8', '17', '21']
19
+ # Versions need to align with ones in 'main.yml' workflow
20
+ kotlin_version : ['1.7.22', '1.8.10', '1.9.23', '2.0.0-Beta4']
19
21
os : ['ubuntu-22.04']
20
22
env :
21
23
JAVA_OPTS : " -XX:+TieredCompilation -XX:TieredStopAtLevel=1"
28
30
java-version : ${{ matrix.java_version }}
29
31
cache : ' maven'
30
32
- name : Build and test
31
- run : ./mvnw -B -ff -ntp clean verify
33
+ run : ./mvnw -B -ff -ntp -Dversion.kotlin=${{ matrix.kotlin_version }} clean verify
32
34
33
35
# No recursive rebuild (yet?)
You can’t perform that action at this time.
0 commit comments