From d2bda374e8702365154b183ac06f59071ebb8f30 Mon Sep 17 00:00:00 2001 From: sangeeths03 Date: Fri, 9 May 2025 19:02:32 +0530 Subject: [PATCH] Create destination.yml --- .github/workflows/destination.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/destination.yml diff --git a/.github/workflows/destination.yml b/.github/workflows/destination.yml new file mode 100644 index 00000000..410e2b2a --- /dev/null +++ b/.github/workflows/destination.yml @@ -0,0 +1,20 @@ +name: Reproduce Simulator Destination Error + +on: + workflow_dispatch: + +jobs: + test: + runs-on: macos-14 + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Run xcodebuild with invalid simulator + run: | + xcodebuild -project Test.xcodeproj \ + -scheme DEV \ + -destination 'platform=iOS Simulator,name=iPhone 16 Pro,OS=latest' \ + -testPlan UnitTests \ + build-for-testing