Skip to content

Commit 1f58a57

Browse files
authored
Add support for IJ 2020.3 (#941)
1 parent 28c1329 commit 1f58a57

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/check-pr-idea-plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
build:
1616
strategy:
1717
matrix:
18-
ij_sdk: [IJ193, IJ201, IJ202]
18+
ij_sdk: [IJ193, IJ201, IJ202, IJ203]
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@v2

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
ij_sdk: [IJ193, IJ201, IJ202]
46+
ij_sdk: [IJ193, IJ201, IJ202, IJ203]
4747
runs-on: ubuntu-latest
4848
steps:
4949
- uses: actions/checkout@v2

spek-ide-plugin-intellij-idea/build.gradle.kts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,17 @@ val buildMatrix = mapOf(
2626
"IJ183",
2727
ij.VersionRange("202.1", "202.*"),
2828
arrayOf("java", "org.jetbrains.kotlin:1.3.72-release-IJ2020.1-5")
29+
),
30+
"IJ203" to ij.BuildConfig(
31+
"203.5981.155",
32+
"IJ2020.3",
33+
"IJ183",
34+
ij.VersionRange("203.1", "203.*"),
35+
arrayOf("java", "org.jetbrains.kotlin:1.4.0-release-IJ2020.2-1")
2936
)
3037
)
3138

32-
val sdkVersion = project.properties["ij.version"] ?: "IJ202"
39+
val sdkVersion = project.properties["ij.version"] ?: "IJ203"
3340
val settings = checkNotNull(buildMatrix[sdkVersion])
3441

3542
intellij {

0 commit comments

Comments
 (0)