Skip to content

Commit 3b0e6b5

Browse files
committed
Fix missing Xcode 15.2 runs
1 parent d42c5ce commit 3b0e6b5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/core_extension.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ jobs:
2020
strategy:
2121
matrix:
2222
target: [ios, tvos, macos, watchos]
23-
include:
23+
build-env:
2424
- os: macos-14
2525
xcode: Xcode_15.2
2626
- os: macos-15
2727
xcode: Xcode_16.1
28-
runs-on: ${{ matrix.os }}
28+
runs-on: ${{ matrix.build-env.os }}
2929
steps:
3030
- uses: actions/checkout@v4
3131
- uses: ruby/setup-ruby@v1
3232
- name: Setup Bundler
3333
run: scripts/setup_bundler.sh
3434
- name: Xcode
35-
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
35+
run: sudo xcode-select -s /Applications/${{ matrix.build-env.xcode }}.app/Contents/Developer
3636
- name: Build and test
3737
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseCoreExtension.podspec --platforms=${{ matrix.target }}
3838

0 commit comments

Comments
 (0)