From fb3ab79fb77823212179a3090751f7ff9deecf8c Mon Sep 17 00:00:00 2001 From: Thomas Van Lenten Date: Wed, 25 Sep 2024 20:17:34 -0700 Subject: [PATCH] Stop forcing Xcode versions and cocoapods updates. The base images are advanced enough that these don't need to be controlled any more. --- .github/workflows/cocoapods.yml | 9 --------- .github/workflows/examples.yml | 3 --- .github/workflows/service_generator.yml | 3 --- .github/workflows/swiftpm.yml | 6 ------ 4 files changed, 21 deletions(-) diff --git a/.github/workflows/cocoapods.yml b/.github/workflows/cocoapods.yml index c718ab7f7..6bb48b897 100644 --- a/.github/workflows/cocoapods.yml +++ b/.github/workflows/cocoapods.yml @@ -31,13 +31,7 @@ jobs: pod_configuration: ["Debug", "Release"] extra_flags: ["", "--use-static-frameworks"] steps: - # The "macos-14" image defaults to 15.0.1, select the newer Xcode. - - name: Xcode version - run: sudo xcode-select -switch /Applications/Xcode_15.2.app - uses: actions/checkout@v4 - # The "macos-14" image has CocoaPods 1.14.x, and 1.15 is needed for visionOS - - name: Update CocoaPods - run: gem install cocoapods - name: "iOS, macOS, tvOS, and visionOS" run: | pod lib lint --verbose ${{ matrix.extra_flags }} \ @@ -67,9 +61,6 @@ jobs: matrix: pod_configuration: ["Debug", "Release"] steps: - # The "macos-14" image defaults to 15.0.1, select the newer Xcode. - - name: Xcode version - run: sudo xcode-select -switch /Applications/Xcode_15.2.app - uses: actions/checkout@v4 - name: "macOS" run: | diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 487e10435..6c1f1d16b 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -37,9 +37,6 @@ jobs: matrix: SAMPLE: ["Calendar", "Drive", "YouTube", "Storage"] steps: - # The "macos-14" image defaults to 15.0.1, select the newer Xcode. - - name: Xcode version - run: sudo xcode-select -switch /Applications/Xcode_15.2.app - uses: actions/checkout@v4 - name: Build Debug run: | diff --git a/.github/workflows/service_generator.yml b/.github/workflows/service_generator.yml index e242c921e..f9e5689a6 100644 --- a/.github/workflows/service_generator.yml +++ b/.github/workflows/service_generator.yml @@ -49,9 +49,6 @@ jobs: matrix: CONFIGURATION: ["Debug", "Release"] steps: - # The "macos-14" image defaults to 15.0.1, select the newer Xcode. - - name: Xcode version - run: sudo xcode-select -switch /Applications/Xcode_15.2.app - uses: actions/checkout@v4 - name: Build ServiceGenerator run: | diff --git a/.github/workflows/swiftpm.yml b/.github/workflows/swiftpm.yml index 5d29a20a3..0123818b9 100644 --- a/.github/workflows/swiftpm.yml +++ b/.github/workflows/swiftpm.yml @@ -30,9 +30,6 @@ jobs: matrix: CONFIGURATION: ["debug", "release"] steps: - # The "macos-14" image defaults to 15.0.1, select the newer Xcode. - - name: Xcode version - run: sudo xcode-select -switch /Applications/Xcode_15.2.app - uses: actions/checkout@v4 - name: Build and Test Library run: | @@ -50,9 +47,6 @@ jobs: PLATFORM: ["ios", "macos", "tvos", "watchos", "visionos"] CONFIGURATION: ["Debug", "Release"] steps: - # The "macos-14" image defaults to 15.0.1, select the newer Xcode. - - name: Xcode version - run: sudo xcode-select -switch /Applications/Xcode_15.2.app - uses: actions/checkout@v4 - name: Build and Test Library run: |