From 5f44e30400b546919c8c265e67d56647613de3a4 Mon Sep 17 00:00:00 2001 From: Paolo Leonardi Date: Tue, 23 Jul 2024 01:46:40 +0100 Subject: [PATCH] Add build visionOS step to workflows --- .github/workflows/run-tests-WaterfallGridSample.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/run-tests-WaterfallGridSample.yml b/.github/workflows/run-tests-WaterfallGridSample.yml index 9cd4e72..e91cebe 100644 --- a/.github/workflows/run-tests-WaterfallGridSample.yml +++ b/.github/workflows/run-tests-WaterfallGridSample.yml @@ -48,5 +48,8 @@ jobs: - name: Build (tvOS) run: xcodebuild build -scheme WaterfallGrid -destination "platform=tvOS Simulator,OS=17.5,name=Apple TV" | xcpretty + - name: Build (visionOS) + run: xcodebuild build -scheme WaterfallGrid -destination "platform=visionOS Simulator,OS=1.2,name=Apple Vision Pro" | xcpretty + - name: Build (watchOS) run: xcodebuild build -scheme WaterfallGrid -destination "platform=watchOS Simulator,OS=10.5,name=Apple Watch Ultra 2 (49mm)" | xcpretty