Skip to content

Commit

Permalink
Added workflows for IC-242
Browse files Browse the repository at this point in the history
  • Loading branch information
sksamuel committed Sep 30, 2024
1 parent fdb5db6 commit 9334e8f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
product: [ "IC-223", "IC-231", "IC-232", "IC-233", "IC-241" ]
product: [ "IC-223", "IC-231", "IC-232", "IC-233", "IC-241", "IC-242" ]
include:
- product: "IC-223"
java: "17"
Expand All @@ -31,9 +31,9 @@ jobs:
- product: "IC-241"
java: "17"
distribution: "temurin"
# - product: "IC-242"
# java: "17"
# distribution: "temurin"
- product: "IC-242"
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-223", "IC-231", "IC-232", "IC-233", "IC-241" ]
product: [ "IC-223", "IC-231", "IC-232", "IC-233", "IC-241", "IC-242" ]
include:
- product: "IC-223"
java: "17"
Expand All @@ -29,6 +29,9 @@ 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: 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-223", "IC-231", "IC-232", "IC-233", "IC-241" ]
product: [ "IC-223", "IC-231", "IC-232", "IC-233", "IC-241", "IC-242" ]
include:
- product: "IC-223"
java: "17"
Expand All @@ -25,6 +25,9 @@ jobs:
- product: "IC-241"
java: "17"
distribution: "temurin"
- product: "IC-242"
java: "17"
distribution: "temurin"
max-parallel: 1

runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ val descriptors = listOf(
),
)

val productName = System.getenv("PRODUCT_NAME") ?: "IC-241"
val productName = System.getenv("PRODUCT_NAME") ?: "IC-242"
val jvmTargetVersion = System.getenv("JVM_TARGET") ?: "11"
val descriptor = descriptors.first { it.sourceFolder == productName }

Expand Down

0 comments on commit 9334e8f

Please sign in to comment.