Skip to content

Commit

Permalink
chore(CI) Fix iOS demo build
Browse files Browse the repository at this point in the history
Running `pod install` is not necessary anymore as iOS demos depend on the SDK using SPM.
  • Loading branch information
guillaume-tgl committed Feb 14, 2024
1 parent 22704ae commit 8d4f3fd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,22 @@ on:

jobs:
build-custom-demo:
runs-on: macos-12
runs-on: macos-13
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
runs-on: macos-13
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"

0 comments on commit 8d4f3fd

Please sign in to comment.