From c1017be29b1e2338bab851504971965c78c4a31c Mon Sep 17 00:00:00 2001 From: Raghav-Bell Date: Mon, 2 Oct 2023 00:08:25 +0530 Subject: [PATCH 1/3] Added support for windows/ARM64 --- .github/workflows/CICD.yml | 1 + CHANGELOG.md | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 95a5c9ab8c..431b31d32b 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -172,6 +172,7 @@ jobs: - { target: x86_64-apple-darwin , os: macos-12 } - { target: x86_64-pc-windows-gnu , os: windows-2019 } - { target: x86_64-pc-windows-msvc , os: windows-2019 } + - { target: thumbv7a-pc-windows-msvc , os: windows-2019 } - { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04, use-cross: true } - { target: x86_64-unknown-linux-musl , os: ubuntu-20.04, use-cross: true } env: diff --git a/CHANGELOG.md b/CHANGELOG.md index d921f9bb09..bf9b6eacd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Add environment variable `BAT_PAGING`, see #2629 (@einfachIrgendwer0815) - Add support for `LESSOPEN` and `LESSCLOSE`. See #1597, #1739, #2444, #2602, and #2662 (@Anomalocaridid) +- Add support for windows/ARM64 platform. See #2644 (@Raghav-Bell) ## Bugfixes From 313867645748d0ea1cdf75857478b463fb054e49 Mon Sep 17 00:00:00 2001 From: Raghav-Bell Date: Mon, 2 Oct 2023 00:32:47 +0530 Subject: [PATCH 2/3] Fixed toolchain problem --- .github/workflows/CICD.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 431b31d32b..d83a2ca8e3 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -172,7 +172,7 @@ jobs: - { target: x86_64-apple-darwin , os: macos-12 } - { target: x86_64-pc-windows-gnu , os: windows-2019 } - { target: x86_64-pc-windows-msvc , os: windows-2019 } - - { target: thumbv7a-pc-windows-msvc , os: windows-2019 } + - { target: aarch64-pc-windows-msvc , os: windows-2019 } - { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04, use-cross: true } - { target: x86_64-unknown-linux-musl , os: ubuntu-20.04, use-cross: true } env: From ad44f77fe0f555efb6e295871e1a22799fa74138 Mon Sep 17 00:00:00 2001 From: Raghav-Bell Date: Mon, 2 Oct 2023 00:49:23 +0530 Subject: [PATCH 3/3] Fixed OS version error. --- .github/workflows/CICD.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index d83a2ca8e3..c27dc31fc6 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -172,7 +172,7 @@ jobs: - { target: x86_64-apple-darwin , os: macos-12 } - { target: x86_64-pc-windows-gnu , os: windows-2019 } - { target: x86_64-pc-windows-msvc , os: windows-2019 } - - { target: aarch64-pc-windows-msvc , os: windows-2019 } + - { target: aarch64-pc-windows-msvc , os: windows-latest } - { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04, use-cross: true } - { target: x86_64-unknown-linux-musl , os: ubuntu-20.04, use-cross: true } env: