Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Kotlin-IR from CI matrix #1153

Merged
merged 2 commits into from Sep 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/gradle.yml
Expand Up @@ -18,9 +18,8 @@ jobs:
matrix:
java-version: [ 17, 19 ] # test LTS versions, and the newest
kotlin-version: [ 1.5.31, 1.6.21, 1.7.22, 1.8.20, 1.9.10 ]
kotlin-ir-enabled: [ true, false ]
fail-fast: false # in case one JDK fails, we still want to see results from others
name: "[java=${{ matrix.java-version }}, kotlin=${{ matrix.kotlin-version }}, IR=${{ matrix.kotlin-ir-enabled }}]"
name: "[java=${{ matrix.java-version }}, kotlin=${{ matrix.kotlin-version }}]"
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
Expand All @@ -39,7 +38,6 @@ jobs:
./gradlew check
--stacktrace
-Pkotlin.version=${{ matrix.kotlin-version }}
-Pkotlin.ir.enabled=${{ matrix.kotlin-ir-enabled }}
-PjavaToolchainTestVersion=${{ matrix.java-version }}

android-instrumented-tests:
Expand Down