Skip to content

Commit

Permalink
Added IC-241
Browse files Browse the repository at this point in the history
  • Loading branch information
sksamuel committed Jan 24, 2024
1 parent 19514b9 commit 55e17c4
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
product: [ "IC-211", "IC-212", "IC-213", "IC-221", "IC-222", "IC-223", "IC-231", "IC-232", "IC-233" ]
product: [ "IC-211", "IC-212", "IC-213", "IC-221", "IC-222", "IC-223", "IC-231", "IC-232", "IC-233", "IC-241" ]
include:
- product: "IC-211"
java: "11"
Expand Down Expand Up @@ -43,6 +43,9 @@ jobs:
- product: "IC-233"
java: "17"
distribution: "temurin"
- product: "IC-241"
java: "17"
distribution: "temurin"
max-parallel: 10
fail-fast: false

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
product: [ "IC-211", "IC-212", "IC-213", "IC-221", "IC-222", "IC-223", "IC-231", "IC-232", "IC-233" ]
product: [ "IC-211", "IC-212", "IC-213", "IC-221", "IC-222", "IC-223", "IC-231", "IC-232", "IC-233", "IC-241" ]
include:
- product: "IC-211"
java: "11"
Expand Down Expand Up @@ -41,6 +41,9 @@ jobs:
- product: "IC-233"
java: "17"
distribution: "temurin"
- product: "IC-241"
java: "17"
distribution: "temurin"
max-parallel: 10
fail-fast: false

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
product: [ "IC-211", "IC-212", "IC-213", "IC-221", "IC-222", "IC-223", "IC-231", "IC-232", "IC-233" ]
product: [ "IC-211", "IC-212", "IC-213", "IC-221", "IC-222", "IC-223", "IC-231", "IC-232", "IC-233", "IC-241" ]
include:
- product: "IC-211"
java: "11"
Expand Down Expand Up @@ -37,6 +37,9 @@ jobs:
- product: "IC-233"
java: "17"
distribution: "temurin"
- product: "IC-241"
java: "17"
distribution: "temurin"
max-parallel: 1

runs-on: ubuntu-latest
Expand Down
9 changes: 8 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,16 @@ val plugins = listOf(
sourceFolder = "IC-233",
deps = listOf("java", "org.jetbrains.plugins.gradle", "org.jetbrains.kotlin")
),
PluginDescriptor(
since = "241.9959.2", // this version is 2024.1
until = "241.*",
sdkVersion = "241.9959-EAP-CANDIDATE-SNAPSHOT",
sourceFolder = "IC-241",
deps = listOf("java", "org.jetbrains.plugins.gradle", "org.jetbrains.kotlin")
),
)

val productName = System.getenv("PRODUCT_NAME") ?: "IC-223"
val productName = System.getenv("PRODUCT_NAME") ?: "IC-241"
val jvmTarget = System.getenv("JVM_TARGET") ?: "11"
val descriptor = plugins.first { it.sourceFolder == productName }

Expand Down

0 comments on commit 55e17c4

Please sign in to comment.