From eae5ac13dd47eafd2d338b21db7311bbfa861b68 Mon Sep 17 00:00:00 2001 From: Nara Kasbergen Kwon <855115+xiehan@users.noreply.github.com> Date: Fri, 26 Sep 2025 20:35:19 +0200 Subject: [PATCH] build: Produce a Windows arm64 binary (#35461) --- .changes/v1.15/NEW FEATURES-20250926-164134.yaml | 5 +++++ .github/workflows/build.yml | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changes/v1.15/NEW FEATURES-20250926-164134.yaml diff --git a/.changes/v1.15/NEW FEATURES-20250926-164134.yaml b/.changes/v1.15/NEW FEATURES-20250926-164134.yaml new file mode 100644 index 0000000000..b55e44da38 --- /dev/null +++ b/.changes/v1.15/NEW FEATURES-20250926-164134.yaml @@ -0,0 +1,5 @@ +kind: NEW FEATURES +body: We now produce builds for Windows ARM64 +time: 2025-09-26T16:41:34.771437+02:00 +custom: + Issue: "32719" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6dc19041c0..a877a62353 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -121,6 +121,7 @@ jobs: - {goos: "solaris", goarch: "amd64", runson: "ubuntu-latest", cgo-enabled: "0"} - {goos: "windows", goarch: "386", runson: "ubuntu-latest", cgo-enabled: "0"} - {goos: "windows", goarch: "amd64", runson: "ubuntu-latest", cgo-enabled: "0"} + - {goos: "windows", goarch: "arm64", runson: "ubuntu-latest", cgo-enabled: "0"} - {goos: "darwin", goarch: "amd64", runson: "ubuntu-latest", cgo-enabled: "0"} - {goos: "darwin", goarch: "arm64", runson: "ubuntu-latest", cgo-enabled: "0"} fail-fast: false