You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[KGP][IT] Require Xcode 26 for shouldDownloadLightNativeBundleWithMaven
This KGP test downloads a "light" K/N dist and therefore builds platform
libraries on the test machine:
NativeDownloadAndPlatformLibsIT.shouldDownloadLightNativeBundleWithMaven
KT-80209 updates the platform library .def files to Xcode 26, so
platform libraries are no longer buildable with earlier Xcode versions.
This makes the test fail on the CI agents that still use Xcode 16.0.
To fix this, this commit updates the test annotation
`@RequiredXCodeVersion` from 14.1 to 26.0. So the test is now ignored
when run with earlier Xcode versions, which effectively mutes it until
the agents are updated to Xcode 26 (KTI-2654).
Copy file name to clipboardExpand all lines: libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/kotlin/org/jetbrains/kotlin/gradle/native/NativeDownloadAndPlatformLibsIT.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -264,7 +264,7 @@ class NativeDownloadAndPlatformLibsIT : KGPBaseTest() {
264
264
}
265
265
266
266
@DisplayName("Download light Native bundle with maven")
0 commit comments