From 482ad81a39e1ddcc30aa72679e33d1026f6eb4ce Mon Sep 17 00:00:00 2001 From: Stuart Lynch Date: Wed, 16 Oct 2024 20:27:47 +0100 Subject: [PATCH] Build for device --- .github/workflows/test.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e1777f11..01f224f7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -89,9 +89,11 @@ jobs: set -o pipefail && xcodebuild \ -workspace externaldisplayexample.xcworkspace \ -scheme externaldisplayexample \ - -configuration Release \ + -configuration Debug \ -sdk iphonesimulator \ - -derivedDataPath build | xcpretty + -derivedDataPath build \ + ARCHS=x86_64 \ + ONLY_ACTIVE_ARCH=YES | xcpretty build-ios-new-arch: runs-on: macos-latest @@ -146,9 +148,11 @@ jobs: set -o pipefail && xcodebuild \ -workspace externaldisplayexample.xcworkspace \ -scheme externaldisplayexample \ - -configuration Release \ + -configuration Debug \ -sdk iphonesimulator \ - -derivedDataPath build | xcpretty + -derivedDataPath build \ + ARCHS=x86_64 \ + ONLY_ACTIVE_ARCH=YES | xcpretty build-android-old-arch: runs-on: ubuntu-latest