Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/ci_e2e_pay_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -317,15 +317,21 @@ jobs:
- name: Build Runner.app via xcodebuild (automatic signing)
id: build_ios
working-directory: packages/reown_walletkit/example/ios
# Build arm64-only for the simulator. mobile_scanner pulls in Google
# MLKitBarcodeScanning, which ships no x86_64 simulator slice, so a
# fat "generic/platform=iOS Simulator" build fails with
# "Module 'mobile_scanner' not found" on the x86_64 slice. The runner
# is Apple Silicon, so arm64 is the only slice we need.
run: |
set -o pipefail && env NSUnbufferedIO=YES \
xcodebuild \
-workspace Runner.xcworkspace \
-scheme internal \
-configuration Debug-internal \
-sdk iphonesimulator \
-destination "generic/platform=iOS Simulator" \
-destination "generic/platform=iOS Simulator,arch=arm64" \
-derivedDataPath ../build/ios-ddcache \
EXCLUDED_ARCHS[sdk=iphonesimulator*]=x86_64 \
CODE_SIGNING_ALLOWED=YES \
CODE_SIGN_STYLE=Automatic \
DEVELOPMENT_TEAM=W5R8AG9K22 \
Expand Down
Loading