Skip to content

Commit

Permalink
Support IntelliJ 2023.1. (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
linlin-s committed Jun 19, 2023
1 parent 82706f2 commit 7fda448
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
fail-fast: false
matrix:
product: [ "IC-2022.2", "231.4840-EAP-CANDIDATE-SNAPSHOT" ]
product: [ "IC-2022.2", "IC-2023.1"]
max-parallel: 5
env:
PRODUCT_NAME: ${{ matrix.product }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
product: [ "IC-2022.2", "231.4840-EAP-CANDIDATE-SNAPSHOT" ]
product: [ "IC-2022.2", "IC-2023.1"]
max-parallel: 5
env:
PRODUCT_NAME: ${{ matrix.product }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
release:
strategy:
matrix:
product: [ "IC-2022.2" ]
product: [ "IC-2022.2", "IC-2023.1" ]
max-parallel: 1
env:
PRODUCT_NAME: ${{ matrix.product }}
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ val plugins = listOf(
PluginDescriptor(
since = "231",
until = "231.*",
sdkVersion = "231.4840-EAP-CANDIDATE-SNAPSHOT",
sdkVersion = "IC-2023.1",
platformType = PlatformType.IdeaCommunity,
sourceFolder = "IC-231",
kotlin = KotlinOptions(
Expand All @@ -44,7 +44,7 @@ val plugins = listOf(
)
)

val defaultProductName = "231.4840-EAP-CANDIDATE-SNAPSHOT"
val defaultProductName = "IC-2023.1"
val productName = System.getenv("PRODUCT_NAME") ?: defaultProductName
val maybeGithubRunNumber = System.getenv("GITHUB_RUN_NUMBER")?.toInt()
val descriptor = plugins.first { it.sdkVersion == productName }
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ repositories {
}

dependencies {
api(kotlin("gradle-plugin", version = "1.7.10"))
api(kotlin("gradle-plugin", version = "1.9.0-Beta"))
}

0 comments on commit 7fda448

Please sign in to comment.