We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b42143f commit ef374d1Copy full SHA for ef374d1
1 file changed
.github/workflows/dep_build.yml
@@ -10,12 +10,14 @@ permissions:
10
11
jobs:
12
build:
13
- # Do we want wide matrix build? For now, limited
+ # Do we want wide matrix build? For now, more limited
14
runs-on: ${{ matrix.os }}
15
strategy:
16
fail-fast: false
17
matrix:
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']
21
os: ['ubuntu-22.04']
22
env:
23
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
@@ -28,6 +30,6 @@ jobs:
28
30
java-version: ${{ matrix.java_version }}
29
31
cache: 'maven'
32
- name: Build and test
- run: ./mvnw -B -ff -ntp clean verify
33
+ run: ./mvnw -B -ff -ntp -Dversion.kotlin=${{ matrix.kotlin_version }} clean verify
34
35
# No recursive rebuild (yet?)
0 commit comments