File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -20,16 +20,19 @@ jobs:
20
20
strategy :
21
21
matrix :
22
22
target : [ios, tvos, macos, watchos]
23
- os : [macos-14]
24
- xcode : [Xcode_15.2, Xcode_16]
25
- runs-on : ${{ matrix.os }}
23
+ build-env :
24
+ - os : macos-14
25
+ xcode : Xcode_15.2
26
+ - os : macos-15
27
+ xcode : Xcode_16.1
28
+ runs-on : ${{ matrix.build-env.os }}
26
29
steps :
27
30
- uses : actions/checkout@v4
28
31
- uses : ruby/setup-ruby@v1
29
32
- name : Setup Bundler
30
33
run : scripts/setup_bundler.sh
31
34
- name : Xcode
32
- 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
33
36
- name : Build and test
34
37
run : scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseCoreExtension.podspec --platforms=${{ matrix.target }}
35
38
You can’t perform that action at this time.
0 commit comments