Skip to content

Commit 915a15f

Browse files
committed
Fix WF
1 parent 38cf74a commit 915a15f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/dep_build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
matrix:
1818
java_version: ['8', '17', '21']
1919
# 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']
20+
# kotlin-reflect 1.8.2x has a bug and some tests fail, so we are downgrading to 1.8.10.
21+
# https://youtrack.jetbrains.com/issue/KT-65156
22+
kotlin_version: ['1.8.10', '1.9.23', '2.0.0-Beta4']
2123
os: ['ubuntu-22.04']
2224
env:
2325
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ jobs:
2929
matrix:
3030
java_version: ['8', '11', '17', '21', '22']
3131
# kotlin-reflect 1.8.2x has a bug and some tests fail, so we are downgrading to 1.8.10.
32+
# https://youtrack.jetbrains.com/issue/KT-65156
3233
# kotlin-reflect 2.0.0-Beta5 is not used because of KT-67209
33-
kotlin_version: ['1.7.22', '1.8.10', '1.9.23', '2.0.0-Beta4']
34+
kotlin_version: ['1.8.10', '1.9.23', '2.0.0-Beta4']
3435
include:
3536
- java_version: '8'
36-
kotlin_version: '1.7.22'
37+
kotlin_version: '1.8.10'
3738
release_build: 'R'
3839
env:
3940
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"

0 commit comments

Comments
 (0)