From 3ff8a1f15108dbaa2d45da5efde98a80beff8af5 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Mon, 14 Apr 2025 19:17:25 -0400 Subject: [PATCH] Add Windows ARM runner (#859) For Java, at least. There is no Windows ARM native target. --- .github/workflows/build.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 952ee388..fd896ff1 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -96,6 +96,8 @@ jobs: target: mingwX64 - os: windows-2025 target: mingwX64 + - os: windows-11-arm + target: skip tests: - type: native - type: java @@ -108,6 +110,32 @@ jobs: version: 21 - type: java version: latest + exclude: + # No Windows ARM Kotlin native target yet. + - platform: + os: windows-11-arm + target: skip + tests: + type: native + # No Windows ARM JDKs for these versions yet. + - platform: + os: windows-11-arm + target: skip + tests: + type: java + version: 8 + - platform: + os: windows-11-arm + target: skip + tests: + type: java + version: 11 + - platform: + os: windows-11-arm + target: skip + tests: + type: java + version: latest runs-on: ${{ matrix.platform.os }}