From fe04cd2c35879fb017e51997397599652c24a925 Mon Sep 17 00:00:00 2001 From: Jeff Swartz Date: Tue, 6 Aug 2024 12:03:59 -0700 Subject: [PATCH] Fix build issues in sample test --- .github/workflows/sample_test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sample_test.yml b/.github/workflows/sample_test.yml index ed52d53a..053b1eaa 100644 --- a/.github/workflows/sample_test.yml +++ b/.github/workflows/sample_test.yml @@ -46,9 +46,10 @@ jobs: if test -f Podfile then pod update opentok-react-native + pod update hermes-engine --no-repo-update pod install cat Podfile.lock - xcodebuild clean build -quiet -workspace ${{ matrix.project }}.xcworkspace -scheme ${{ matrix.project }} -destination 'platform=iOS Simulator,name=iPhone 11,OS=15.0' + xcodebuild clean build -quiet -workspace ${{ matrix.project }}.xcworkspace -scheme ${{ matrix.project }} -destination 'platform=iOS Simulator,name=iPhone 11,OS=15.0' -- CODE_SIGNING_ALLOWED=NO else ./gradlew -Dorg.gradle.jvmargs=-Xmx4g app:assembleRelease fi