From 22cd8ba0507488a6d73bea728c3fdf0e2594732f Mon Sep 17 00:00:00 2001 From: Thomas Van Lenten Date: Thu, 26 Sep 2024 13:06:57 -0700 Subject: [PATCH] [ObjC] Disabling visionOS on CI. Github dropped support for the current image: https://github.com/actions/runner-images/issues/10559 There is a new image that has visionOS, but it is listed as "beta", so it might make sense to wait and revisit when generally updating the macOS images/tools. PiperOrigin-RevId: 679264196 [ObjC] Disabling visionOS on CI. Github dropped support for the current image: https://github.com/actions/runner-images/issues/10559 There is a new image that has visionOS, but it is listed as "beta", so it might make sense to wait and revisit when generally updating the macOS images/tools. PiperOrigin-RevId: 679264196 [ObjC] Disabling visionOS on CI. Github dropped support for the current image: https://github.com/actions/runner-images/issues/10559 There is a new image that has visionOS, but it is listed as "beta", so it might make sense to wait and revisit when generally updating the macOS images/tools. PiperOrigin-RevId: 679264196 --- .github/workflows/test_objectivec.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test_objectivec.yml b/.github/workflows/test_objectivec.yml index ab3a5af4b37c..bd6d28c06f31 100644 --- a/.github/workflows/test_objectivec.yml +++ b/.github/workflows/test_objectivec.yml @@ -68,15 +68,12 @@ jobs: strategy: fail-fast: false # Don't cancel all jobs if one fails. matrix: - PLATFORM: ["ios", "macos", "tvos", "watchos", "visionos"] + # Disabling visionOS for now: https://github.com/actions/runner-images/issues/10559 + PLATFORM: ["ios", "macos", "tvos", "watchos"] CONFIGURATION: ["Debug", "Release"] include: - OS: macos-12 XCODE: "14.1" - - OS: macos-14 - PLATFORM: "visionos" - XCODE: "15.2" - EXTRA_FLAGS: --copt="-Wno-deprecated-non-prototype" name: CocoaPods ${{ matrix.PLATFORM }} ${{ matrix.CONFIGURATION }} runs-on: ${{ matrix.OS }} steps: