From 33c1bc8f50f4a55b707362b15f6cbbd3a824e733 Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Fri, 19 Jan 2024 11:08:26 -0800 Subject: [PATCH] Fix Examples CI We need to point to the latest OSes on GitHub for examples to build, and they recently updated their Xcode image. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 832c43742ff2..d42761e22770 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ CONFIG = debug -PLATFORM_IOS = iOS Simulator,id=$(call udid_for,iOS 17,iPhone \d\+ Pro [^M]) +PLATFORM_IOS = iOS Simulator,id=$(call udid_for,iOS 17.2,iPhone \d\+ Pro [^M]) PLATFORM_MACOS = macOS PLATFORM_MAC_CATALYST = macOS,variant=Mac Catalyst -PLATFORM_TVOS = tvOS Simulator,id=$(call udid_for,tvOS 17,TV) -PLATFORM_WATCHOS = watchOS Simulator,id=$(call udid_for,watchOS 10,Watch) +PLATFORM_TVOS = tvOS Simulator,id=$(call udid_for,tvOS 17.2,TV) +PLATFORM_WATCHOS = watchOS Simulator,id=$(call udid_for,watchOS 10.2,Watch) default: test-all