From d63b34a8c121a7e9903f20286b52066a17e91a99 Mon Sep 17 00:00:00 2001 From: anx-bkelhar <76105118+anx-bkelhar@users.noreply.github.com> Date: Mon, 18 Mar 2024 13:36:45 +0100 Subject: [PATCH] SIANXSVC-1225: change destination parameter for building the app --- .github/workflows/ios.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index bc8061d8..cc6c83be 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -26,9 +26,8 @@ jobs: - name: Build for Testing if: always() run: | - xcodebuild build-for-testing -project ./TwoFas/${{env.PROJECT_NAME}}.xcodeproj -scheme ${{env.SCHEME}} -sdk iphonesimulator + xcodebuild build-for-testing -project ./TwoFas/${{env.PROJECT_NAME}}.xcodeproj -scheme ${{env.SCHEME}} -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=17.0.1,name=iPhone 15 Pro Max' - name: Run Tests - if: always() run: | xcodebuild test-without-building -project ./TwoFas/${{env.PROJECT_NAME}}.xcodeproj -scheme ${{env.SCHEME}} -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=17.0.1,name=iPhone 15 Pro Max' - name: Build/Release