Skip to content

Commit df07d9c

Browse files
committed
Add 252
1 parent c16d2f4 commit df07d9c

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
product: [ "IC-242", "IC-243", "IC-251" ]
17+
product: [ "IC-242", "IC-243", "IC-251", "IC-252" ]
1818
max-parallel: 10
1919
fail-fast: false
2020

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
product: [ "IC-242", "IC-243", "IC-251" ]
15+
product: [ "IC-242", "IC-243", "IC-251", "IC-252" ]
1616
max-parallel: 10
1717
fail-fast: false
1818

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
product: [ "IC-242", "IC-243", "IC-251" ]
11+
product: [ "IC-242", "IC-243", "IC-251", "IC-252" ]
1212
max-parallel: 1
1313

1414
runs-on: ubuntu-latest

build.gradle.kts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,17 @@ val descriptors = listOf(
7474
useInstaller = true,
7575
jdkTarget = JavaVersion.VERSION_21,
7676
),
77+
PluginDescriptor(
78+
since = "252.*", // this version is 2025.1.x
79+
until = "254.*",
80+
sdkVersion = "2025.2",
81+
sourceFolder = "IC-252",
82+
useInstaller = true,
83+
jdkTarget = JavaVersion.VERSION_21,
84+
),
7785
)
7886

79-
val productName = System.getenv("PRODUCT_NAME") ?: "IC-251"
87+
val productName = System.getenv("PRODUCT_NAME") ?: "IC-252"
8088
val descriptor: PluginDescriptor = descriptors.first { it.sourceFolder == productName }
8189
val jvmTargetVersion: String = System.getenv("JVM_TARGET") ?: descriptor.jdkTarget.majorVersion
8290

0 commit comments

Comments
 (0)