From 3fc96a29488810d4248498fa34e1c2e2c609ce0c Mon Sep 17 00:00:00 2001 From: onevcat Date: Tue, 19 Nov 2024 23:55:54 +0900 Subject: [PATCH] Add OS versions to CI --- .github/workflows/build.yaml | 6 +++--- .github/workflows/test.yaml | 6 +++--- fastlane/Fastfile | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6511d988f..474e92876 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -18,9 +18,9 @@ jobs: matrix: destination: [ 'macOS', - 'iOS Simulator,name=iPhone 15', - 'tvOS Simulator,name=Apple TV', - 'watchOS Simulator,name=Apple Watch Series 9 (41mm)' + 'iOS Simulator,name=iPhone 15,OS=17.5', + 'tvOS Simulator,name=Apple TV,OS=17.5', + 'watchOS Simulator,name=Apple Watch Series 9 (41mm),OS=10.5' ] xcode: [ '15.2', diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e311c9080..f48ba9494 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -18,9 +18,9 @@ jobs: matrix: destination: [ 'macOS', - 'iOS Simulator,name=iPhone 15', - 'tvOS Simulator,name=Apple TV', - 'watchOS Simulator,name=Apple Watch Series 9 (41mm)' + 'iOS Simulator,name=iPhone 15,OS=17.5', + 'tvOS Simulator,name=Apple TV,OS=17.5', + 'watchOS Simulator,name=Apple Watch Series 9 (41mm),OS=10.5' ] xcode: [ '15.4', diff --git a/fastlane/Fastfile b/fastlane/Fastfile index b6a728db3..43dc242b2 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -8,7 +8,7 @@ platform :ios do lane :tests do test(destination: "platform=macOS") test(destination: "platform=iOS Simulator,name=iPhone 15,OS=17.5") - test(destination: "platform=tvOS Simulator,name=Apple TV") + test(destination: "platform=tvOS Simulator,name=Apple TV,OS=17.5") build(destination: "platform=watchOS Simulator,name=Apple Watch Series 9 (41mm),OS=10.5") end