How can I parrallelize `pluginVerification`

I have the following config in my build.gradle.kts

intellijPlatform {
    pluginConfiguration {
        name = "<name>"
        ideaVersion {
            sinceBuild.set("241")
            untilBuild.set("<version>")
        }
    }
    pluginVerification {
        ides {
            select {
                types = listOf(
                    IntelliJPlatformType.IntellijIdeaUltimate,
                    IntelliJPlatformType.GoLand,
                    IntelliJPlatformType.PyCharmProfessional,
                    IntelliJPlatformType.RustRover,
                    IntelliJPlatformType.WebStorm
                )
                channels = listOf(ProductRelease.Channel.RELEASE)
            }
        }
    }
}

My plugin needs to be verified against multiple JetBrains ides

but the above configuration downloads all IDEs in the same process and then validates against them

is there a way I can split it into a process of 1 IDE Platform each ?

1 Like