From 510ebadda457243ba538caea29d26436866a9d3e Mon Sep 17 00:00:00 2001 From: Hamilton Chapman Date: Mon, 2 Feb 2026 23:25:51 +0000 Subject: [PATCH] fix: CI selection of runners for watchOS and tvOS --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 516f0a4..852d05e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,8 +37,8 @@ jobs: - name: Test iOS run: xcodebuild test -scheme SwiftCBOR -destination 'platform=iOS Simulator,name=iPhone 16 Pro,OS=latest' - name: Test tvOS - run: xcodebuild test -scheme SwiftCBOR -destination 'platform=tvOS Simulator,name=Any tvOS Simulator Device' + run: xcodebuild test -scheme SwiftCBOR -destination 'platform=tvOS Simulator,id=dvtdevice-DVTiOSDeviceSimulatorPlaceholder-appletvsimulator:placeholder' - name: Test Mac Catalyst run: xcodebuild test -scheme SwiftCBOR -destination 'platform=macOS,variant=Mac Catalyst' - name: Test watchOS - run: xcodebuild test -scheme SwiftCBOR -destination 'platform=watchOS Simulator,name=Any watchOS Simulator Device' + run: xcodebuild test -scheme SwiftCBOR -destination 'platform=watchOS Simulator,id=dvtdevice-DVTiOSDeviceSimulatorPlaceholder-watchsimulator:placeholder'