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:
1010
1111jobs :
1212 build :
13- # Do we want wide matrix build? For now, limited
13+ # Do we want wide matrix build? For now, more limited
1414 runs-on : ${{ matrix.os }}
1515 strategy :
1616 fail-fast : false
1717 matrix :
1818 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']
1921 os : ['ubuntu-22.04']
2022 env :
2123 JAVA_OPTS : " -XX:+TieredCompilation -XX:TieredStopAtLevel=1"
2830 java-version : ${{ matrix.java_version }}
2931 cache : ' maven'
3032 - 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
3234
3335# No recursive rebuild (yet?)
You can’t perform that action at this time.
0 commit comments