Skip to content

Commit

Permalink
macos12 is deprecated. switch to macos13 and macos15
Browse files Browse the repository at this point in the history
  • Loading branch information
lalitb committed Jan 21, 2025
1 parent db048cf commit 4e7e8cc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-ios-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
build:
strategy:
matrix:
os: [macos-12, macos-14]
os: [macos-13, macos-15]
config: [release, debug]
simulator: ["'iPhone 8'", "'iPad Air (3rd generation)'"]
runs-on: ${{ matrix.os }}
Expand All @@ -34,9 +34,9 @@ jobs:
continue-on-error: true
- name: build
run: |
if [[ "${{ matrix.os }}" == "macos-12" ]]; then
export IOS_DEPLOYMENT_TARGET=12.0;
elif [[ "${{ matrix.os }}" == "macos-14" ]]; then
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;
fi
./build-tests-ios.sh ${{ matrix.config }} ${{ matrix.simulator }}

0 comments on commit 4e7e8cc

Please sign in to comment.