Ios bitcode spm #33
Workflow file for this run
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: [ main ] | |
paths: | |
- 'demo/ios/CobraDemo/**' | |
- '.github/workflows/ios-demos.yml' | |
pull_request: | |
branches: [ main, 'v[0-9]+.[0-9]+' ] | |
paths: | |
- 'demo/ios/CobraDemo/**' | |
- '.github/workflows/ios-demos.yml' | |
defaults: | |
run: | |
working-directory: demo/ios/CobraDemo | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: xcrun xcodebuild build | |
-configuration Debug | |
-project CobraDemo.xcodeproj | |
-sdk iphoneos | |
-scheme CobraDemo | |
-derivedDataPath ddp | |
CODE_SIGNING_ALLOWED=NO |