Skip to content

Commit

Permalink
Disable ic-242
Browse files Browse the repository at this point in the history
  • Loading branch information
sksamuel committed Jun 3, 2024
1 parent 5de2beb commit 806e83b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 20 deletions.
5 changes: 1 addition & 4 deletions .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", "IC-241", "IC-242" ]
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 @@ -46,9 +46,6 @@ jobs:
- product: "IC-241"
java: "17"
distribution: "temurin"
- product: "IC-242"
java: "17"
distribution: "temurin"
max-parallel: 10
fail-fast: false

Expand Down
5 changes: 1 addition & 4 deletions .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", "IC-241", "IC-242" ]
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 @@ -44,9 +44,6 @@ jobs:
- product: "IC-241"
java: "17"
distribution: "temurin"
- product: "IC-242"
java: "17"
distribution: "temurin"
max-parallel: 10
fail-fast: false

Expand Down
5 changes: 1 addition & 4 deletions .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", "IC-241", "IC-242" ]
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 @@ -40,9 +40,6 @@ jobs:
- product: "IC-241"
java: "17"
distribution: "temurin"
- product: "IC-242"
java: "17"
distribution: "temurin"
max-parallel: 1

runs-on: ubuntu-latest
Expand Down
16 changes: 8 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -115,16 +115,16 @@ val plugins = listOf(
sourceFolder = "IC-241",
deps = listOf("java", "org.jetbrains.plugins.gradle", "org.jetbrains.kotlin")
),
PluginDescriptor(
since = "241.17011.108", // this version is 2024.2
until = "242.*",
sdkVersion = "241.17011-EAP-CANDIDATE-SNAPSHOT",
sourceFolder = "IC-242",
deps = listOf("java", "org.jetbrains.plugins.gradle", "org.jetbrains.kotlin")
),
// PluginDescriptor(
// since = "241.17011.108", // this version is 2024.2
// until = "242.*",
// sdkVersion = "241.17011-EAP-CANDIDATE-SNAPSHOT",
// sourceFolder = "IC-242",
// deps = listOf("java", "org.jetbrains.plugins.gradle", "org.jetbrains.kotlin")
// ),
)

val productName = System.getenv("PRODUCT_NAME") ?: "IC-242"
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 806e83b

Please sign in to comment.