We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db048cf commit 4e7e8ccCopy full SHA for 4e7e8cc
.github/workflows/build-ios-mac.yml
@@ -23,7 +23,7 @@ jobs:
23
build:
24
strategy:
25
matrix:
26
- os: [macos-12, macos-14]
+ os: [macos-13, macos-15]
27
config: [release, debug]
28
simulator: ["'iPhone 8'", "'iPad Air (3rd generation)'"]
29
runs-on: ${{ matrix.os }}
@@ -34,9 +34,9 @@ jobs:
34
continue-on-error: true
35
- name: build
36
run: |
37
- if [[ "${{ matrix.os }}" == "macos-12" ]]; then
38
- export IOS_DEPLOYMENT_TARGET=12.0;
39
- elif [[ "${{ matrix.os }}" == "macos-14" ]]; then
40
- export IOS_DEPLOYMENT_TARGET=14.0;
+ if [[ "${{ matrix.os }}" == "macos-13" ]]; then
+ export IOS_DEPLOYMENT_TARGET=13.0;
+ elif [[ "${{ matrix.os }}" == "macos-15" ]]; then
+ export IOS_DEPLOYMENT_TARGET=15.0;
41
fi
42
./build-tests-ios.sh ${{ matrix.config }} ${{ matrix.simulator }}
0 commit comments