From 516c1ad64dd534926f98c7d5b31f1ec8b7d8b1ec Mon Sep 17 00:00:00 2001 From: guillaume Date: Wed, 14 Feb 2024 16:00:07 +0100 Subject: [PATCH] chore(CI) Fix iOS demo build Running `pod install` is not necessary anymore as iOS demos depend on the SDK using SPM. --- .github/workflows/ios.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 146794d..c03513b 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -14,7 +14,6 @@ jobs: 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" @@ -25,7 +24,6 @@ jobs: 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"