Skip to content

Commit

Permalink
Fix CI plugin verification tests (#311)
Browse files Browse the repository at this point in the history
The plugin verification tests are failing in EAP 2025 builds since the
Kanro plugin doesn't exist in the marketplace with a supported version.
Update the tests to temporarily test up to 2024.3.* builds in the
meantime.
  • Loading branch information
pkwarren authored Feb 10, 2025
1 parent a45d57c commit 4f6fe2c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,11 @@ intellijPlatform {

pluginVerification {
ides {
recommended()
select {
// Temporary workaround for https://github.com/JetBrains/intellij-platform-gradle-plugin/issues/1882
// The Kanro optional dependency is causing failures to resolve required plugins in EAP 2025 tests.
untilBuild = providers.gradleProperty("pluginUntilVerifyBuild")
}
}
freeArgs = listOf(
"-mute",
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ pluginVersion = 0.5.0
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 242
pluginUntilBuild = 253.*
pluginUntilVerifyBuild = 243.*

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType = IU
Expand Down

0 comments on commit 4f6fe2c

Please sign in to comment.