Update demos for version 4.15.0 #127
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 | |
on: push | |
jobs: | |
build-custom-demo: | |
runs-on: macos-12 | |
defaults: | |
run: | |
working-directory: ios/GSSDKCustomDemo | |
steps: | |
- uses: actions/checkout@v2 | |
- run: pod install | |
- run: xcodebuild build -scheme GSSDKCustomDemo -workspace GSSDKCustomDemo.xcworkspace -configuration Debug -sdk iphoneos \ | |
ONLY_ACTIVE_ARCH=YES \ | |
CODE_SIGNING_ALLOWED="NO" | |
build-simple-demo: | |
runs-on: macos-12 | |
defaults: | |
run: | |
working-directory: ios/GSSDKSimpleDemo | |
steps: | |
- uses: actions/checkout@v2 | |
- run: pod install | |
- run: xcodebuild build -scheme GSSDKSimpleDemo -workspace GSSDKSimpleDemo.xcworkspace -configuration Debug -sdk iphoneos \ | |
ONLY_ACTIVE_ARCH=YES \ | |
CODE_SIGNING_ALLOWED="NO" |