Ios bitcode spm #44
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 Demos | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- 'demo/ios/**' | |
- '.github/workflows/ios-demos.yml' | |
pull_request: | |
branches: [ master, 'v[0-9]+.[0-9]+' ] | |
paths: | |
- 'demo/ios/**' | |
- '.github/workflows/ios-demos.yml' | |
jobs: | |
build: | |
runs-on: macos-latest | |
defaults: | |
run: | |
working-directory: demo/ios | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build English | |
run: xcrun xcodebuild build | |
-configuration Debug | |
-project RhinoDemo.xcodeproj | |
-sdk iphoneos | |
-scheme _enDemo | |
-derivedDataPath ddp | |
CODE_SIGNING_ALLOWED=NO | |
- name: Build Other Language | |
run: xcrun xcodebuild build | |
-configuration Debug | |
-project RhinoDemo.xcodeproj | |
-sdk iphoneos | |
-scheme frDemo | |
-derivedDataPath ddp | |
CODE_SIGNING_ALLOWED=NO |