Skip to content

Commit

Permalink
Defer supporting IntelliJ 2024.2 to another commit
Browse files Browse the repository at this point in the history
  • Loading branch information
peddiashrith committed Sep 17, 2024
1 parent e7cce76 commit 451e4cc
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 179 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
fail-fast: false
matrix:
product: [ "IC-2022.2", "IC-2023.1", "IC-2023.2", "IC-2023.3", "IC-2024.1", "2024.2" ]
product: [ "IC-2022.2", "IC-2023.1", "IC-2023.2", "IC-2023.3", "IC-2024.1" ]
max-parallel: 5
env:
PRODUCT_NAME: ${{ matrix.product }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
product: [ "IC-2022.2", "IC-2023.1", "IC-2023.2", "IC-2023.3", "IC-2024.1", "IC-2024.2" ]
product: [ "IC-2022.2", "IC-2023.1", "IC-2023.2", "IC-2023.3", "IC-2024.1" ]
max-parallel: 5
env:
PRODUCT_NAME: ${{ matrix.product }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
release:
strategy:
matrix:
product: [ "IC-2022.2", "IC-2023.1", "IC-2023.2", "IC-2023.3", "IC-2024.1", "IC-2024.2" ]
product: [ "IC-2022.2", "IC-2023.1", "IC-2023.2", "IC-2023.3", "IC-2024.1" ]
max-parallel: 1
env:
PRODUCT_NAME: ${{ matrix.product }}
Expand Down
13 changes: 1 addition & 12 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,21 +80,10 @@ val plugins = listOf(
apiVersion = "1.6"
),
bundledDependencies = listOf("com.intellij.java", "org.jetbrains.kotlin")
),
PluginDescriptor(
since = "242",
until = "242.*",
platformVersion = "2024.2",
platformType = PlatformType.IdeaCommunity,
sourceFolder = "IC-242",
kotlin = KotlinOptions(
apiVersion = "1.6"
),
bundledDependencies = listOf("com.intellij.java", "org.jetbrains.kotlin")
)
)

val defaultProductName = "2024.2"
val defaultProductName = "2024.1"
val productName = System.getenv("PRODUCT_NAME") ?: defaultProductName
val maybeGithubRunNumber = System.getenv("GITHUB_RUN_NUMBER")?.toInt()
val descriptor = plugins.first { it.platformVersion == productName }
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit 451e4cc

Please sign in to comment.