Skip to content

Commit

Permalink
Update checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomsonTan committed Feb 7, 2025
1 parent 3c7d85b commit da2986b
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build-ios-mac11.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: C/C++ CI for iOS

on:
push:
branches:
- master
- main
- dev
- dev/*
- release/*
- buildme/*

pull_request:
branches:
- master
- main
- dev

schedule:
- cron: 0 2 * * 1-5

jobs:
build:
runs-on: macOS-11
strategy:
matrix:
config: [release, debug]
simulator: ["'iPhone 8'", "'iPad Air (3rd generation)'"]
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
fetch-depth: 1
continue-on-error: true
- name: build
run: export IOS_DEPLOYMENT_TARGET=11.0 && ./build-tests-ios.sh ${{ matrix.config }} ${{ matrix.simulator }}

0 comments on commit da2986b

Please sign in to comment.