[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
pull/18511/head
Thomas Van Lenten 6 months ago committed by Copybara-Service
parent 5ffeba825c
commit 088b994653
  1. 6
      .github/workflows/test_objectivec.yml

@ -86,14 +86,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"
# We run presubmits on all "Debug" entries, but not on "Release" entries
- CONFIGURATION: "Debug"
- CONFIGURATION: "Release"

Loading…
Cancel
Save