Skip to content

Commit f47490f

Browse files
authored
[infra] include Android Studio in release printing (#8915)
Added Android Studio to the release printing. Android studio releases are prefixed with "AI" IU-261.23567.71 IU-2025.3.4 IC-2025.2.6.1 IU-2025.2.6.1 IC-2025.1.7 IU-2025.1.7 AI-2025.3.3.6 AI-2025.2.3.9 AI-2025.1.4.8
1 parent 6d04cb3 commit f47490f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,16 +390,18 @@ tasks {
390390
tasks {
391391
printProductsReleases {
392392
channels = listOf(ProductRelease.Channel.RELEASE, ProductRelease.Channel.EAP)
393-
types = listOf(IntelliJPlatformType.IntellijIdeaCommunity, IntelliJPlatformType.IntellijIdeaUltimate)
393+
types = listOf(IntelliJPlatformType.IntellijIdeaCommunity, IntelliJPlatformType.IntellijIdeaUltimate, IntelliJPlatformType.AndroidStudio)
394394
untilBuild = provider { null }
395395

396396
doLast {
397397
productsReleases.get().max()
398398
println()
399399
println("Mapping printProductsReleases output to ideV:")
400-
println(" - The prefix (e.g., IU-, IC-) maps to -Pide (Ultimate, IntelliJ).")
400+
println(" - The prefix (e.g., IU-, IC-, AI-) maps to -Pide (Ultimate, IntelliJ, Android Studio).")
401401
println(" - The number part (e.g., 261.23567.71) maps to -PideV.")
402402
println(" - Example: IU-261.23567.71 -> -Pide=Ultimate -PideV=261.23567.71")
403+
println(" - Example: AI-2025.3.3.6 -> -Pide=AndroidStudio -PideV=2025.3.3.6")
404+
403405
println()
404406
}
405407
}

0 commit comments

Comments
 (0)