From 9d2348c9297b3461615f6913bbe612f8f2e074ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ronny=20Br=C3=A4unlich?= Date: Tue, 15 Oct 2024 15:04:10 +0200 Subject: [PATCH 1/2] feat: support all Tier 2 KMP targets Refers to #628 --- .github/workflows/build.yml | 4 ++-- build.gradle.kts | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dcb1c4f4..91920eec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,9 +19,9 @@ jobs: - os: windows-latest tasks: mingwX64Test - os: macos-13 - tasks: macosX64Test iosX64Test + tasks: macosX64Test iosX64Test tvosX64Test watchosX64Test - os: macos-latest - tasks: macosArm64Test iosSimulatorArm64Test + tasks: macosArm64Test iosSimulatorArm64Test tvosX64Test watchosSimulatorArm64Test runs-on: ${{ matrix.os }} name: Test on ${{ matrix.os }} steps: diff --git a/build.gradle.kts b/build.gradle.kts index 525cd1f0..4fdfb075 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -68,6 +68,13 @@ kotlin { linuxX64() linuxArm64() iosArm64() + watchosSimulatorArm64() + watchosX64() + watchosArm32() + watchosArm64() + tvosSimulatorArm64() + tvosX64() + tvosArm64() // Tier 3 mingwX64() From 156a5b2e08353ec2b10084f48eeb3378d4d7146c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ronny=20Br=C3=A4unlich?= Date: Tue, 29 Oct 2024 06:16:01 +0100 Subject: [PATCH 2/2] fix: use tvosSimulatorArm64Test test task Co-authored-by: Charles Korn --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 91920eec..ecff8448 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: - os: macos-13 tasks: macosX64Test iosX64Test tvosX64Test watchosX64Test - os: macos-latest - tasks: macosArm64Test iosSimulatorArm64Test tvosX64Test watchosSimulatorArm64Test + tasks: macosArm64Test iosSimulatorArm64Test tvosSimulatorArm64Test watchosSimulatorArm64Test runs-on: ${{ matrix.os }} name: Test on ${{ matrix.os }} steps: