Fix syntax error in test_objectivec.yml

I'm not sure why exactly but GitHub Actions is complaining about the reference
to `matrix.PLATFORM`. Let's just delete that and the visionos builds until
we're ready to turn visionos back on.

PiperOrigin-RevId: 617922287
pull/16257/head
Adam Cozzette 11 months ago committed by Copybara-Service
parent d4b19c191a
commit 0641202bcc
  1. 7
      .github/workflows/test_objectivec.yml

@ -68,18 +68,13 @@ jobs:
strategy:
fail-fast: false # Don't cancel all jobs if one fails.
matrix:
PLATFORM: ["ios", "macos", "tvos", "watchos", "visionos"]
PLATFORM: ["ios", "macos", "tvos", "watchos"]
CONFIGURATION: ["Debug", "Release"]
include:
- OS: macos-12
XCODE: "14.1"
- OS: macos-14
PLATFORM: "visionos"
XCODE: "15.2"
name: CocoaPods ${{ matrix.PLATFORM }} ${{ matrix.CONFIGURATION }}
runs-on: ${{ matrix.OS }}
# TODO Enable this once GH is ready
if: ${{ matrix.PLATFORM != "visionos" }}
steps:
- name: Checkout pending changes
uses: protocolbuffers/protobuf-ci/checkout@v2

Loading…
Cancel
Save