Skip to content

Commit 4e7e8cc

Browse files
committed
macos12 is deprecated. switch to macos13 and macos15
1 parent db048cf commit 4e7e8cc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build-ios-mac.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
build:
2424
strategy:
2525
matrix:
26-
os: [macos-12, macos-14]
26+
os: [macos-13, macos-15]
2727
config: [release, debug]
2828
simulator: ["'iPhone 8'", "'iPad Air (3rd generation)'"]
2929
runs-on: ${{ matrix.os }}
@@ -34,9 +34,9 @@ jobs:
3434
continue-on-error: true
3535
- name: build
3636
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;
37+
if [[ "${{ matrix.os }}" == "macos-13" ]]; then
38+
export IOS_DEPLOYMENT_TARGET=13.0;
39+
elif [[ "${{ matrix.os }}" == "macos-15" ]]; then
40+
export IOS_DEPLOYMENT_TARGET=15.0;
4141
fi
4242
./build-tests-ios.sh ${{ matrix.config }} ${{ matrix.simulator }}

0 commit comments

Comments
 (0)