From 6d7a8df54f1c9d326e0e21df5abdcd600a8a1602 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Thu, 2 Feb 2023 23:42:12 -0600 Subject: [PATCH] Downgrade CI to Big Sur to fix missing tvOS targets --- appveyor.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 7f7375c..5309218 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,14 +2,14 @@ version: 0.0.0.{build} clone_depth: 1 -image: macOS-Monterey +image: macOS-BigSur before_build: - 'git submodule update --init --recursive' build_script: - - sh: set -o pipefail && xcodebuild -project Moonlight.xcodeproj -scheme "Moonlight" -destination "platform=iOS Simulator,OS=16.1,name=iPhone 14 Pro" clean build | xcpretty - - sh: set -o pipefail && xcodebuild -project Moonlight.xcodeproj -scheme "Moonlight" -destination "platform=iOS Simulator,OS=16.1,name=iPad (10th generation)" clean build | xcpretty - - sh: set -o pipefail && xcodebuild -project Moonlight.xcodeproj -scheme "Moonlight TV" -destination "platform=tvOS Simulator,OS=16.1,name=Apple TV 4K (3rd generation)" clean build | xcpretty + - sh: set -o pipefail && xcodebuild -project Moonlight.xcodeproj -scheme "Moonlight" -destination "platform=iOS Simulator,OS=15.2,name=iPhone 11 Pro" clean build | xcpretty + - sh: set -o pipefail && xcodebuild -project Moonlight.xcodeproj -scheme "Moonlight" -destination "platform=iOS Simulator,OS=15.2,name=iPad Pro (9.7-inch)" clean build | xcpretty + - sh: set -o pipefail && xcodebuild -project Moonlight.xcodeproj -scheme "Moonlight TV" -destination "platform=tvOS Simulator,OS=15.2,name=Apple TV 4K (2nd generation)" clean build | xcpretty deploy: off