Merge pull request #3034 from liuchao19891114/master #307
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ios | |
on: | |
push: | |
branches: | |
- master | |
- 'feature/**' | |
paths: | |
- 'source/**' | |
- 'express/**' | |
- 'test/**' | |
- 'project/ios/**' | |
- '.github/workflows/ios.yml' | |
pull_request: | |
branches: [master] | |
paths: | |
- 'source/**' | |
- 'express/**' | |
- 'test/**' | |
- 'project/ios/**' | |
- '.github/workflows/ios.yml' | |
concurrency: | |
group: ios-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
ios_build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: build-framework | |
run: | | |
brew install coreutils | |
./package_scripts/ios/xcodebuildiOS.sh -o ios_build | |
shell: bash | |
- name: show-framework | |
run: | | |
ls -lh ios_build |