From 54728a4d0781fb7dafe78dec052610628367b67b Mon Sep 17 00:00:00 2001 From: someposer Date: Thu, 23 May 2024 15:36:46 -0500 Subject: [PATCH 1/4] Update CICD.yml Add build target for Apple Silicon chips --- .github/workflows/CICD.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 45e8fb3fb3..c90db29e1c 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -170,6 +170,7 @@ jobs: - { target: i686-unknown-linux-gnu , os: ubuntu-20.04, dpkg_arch: i686, use-cross: true } - { target: i686-unknown-linux-musl , os: ubuntu-20.04, dpkg_arch: musl-linux-i686, use-cross: true } - { target: x86_64-apple-darwin , os: macos-12, } + - { target: aarch64-apple-darwin , os: macos-12, } - { target: x86_64-pc-windows-gnu , os: windows-2019, } - { target: x86_64-pc-windows-msvc , os: windows-2019, } - { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04, dpkg_arch: amd64, use-cross: true } From 6974c703f9a691816024d0adbdf7f691e3791f9d Mon Sep 17 00:00:00 2001 From: someposer Date: Thu, 23 May 2024 16:21:32 -0500 Subject: [PATCH 2/4] Update CICD.yml Change Apple silicon build to use macOS-14 --- .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 c90db29e1c..831e2f6c73 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -170,7 +170,7 @@ jobs: - { target: i686-unknown-linux-gnu , os: ubuntu-20.04, dpkg_arch: i686, use-cross: true } - { target: i686-unknown-linux-musl , os: ubuntu-20.04, dpkg_arch: musl-linux-i686, use-cross: true } - { target: x86_64-apple-darwin , os: macos-12, } - - { target: aarch64-apple-darwin , os: macos-12, } + - { target: aarch64-apple-darwin , os: macos-14, } - { target: x86_64-pc-windows-gnu , os: windows-2019, } - { target: x86_64-pc-windows-msvc , os: windows-2019, } - { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04, dpkg_arch: amd64, use-cross: true } From ae8bd934832f307d2a4674787eda80f237df297d Mon Sep 17 00:00:00 2001 From: someposer Date: Thu, 23 May 2024 16:56:28 -0500 Subject: [PATCH 3/4] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28e56e34b3..374081b79a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ - Faster startup by offloading glob matcher building to a worker thread #2868 (@cyqsimon) - Display which theme is the default one in basic output (no colors), see #2937 (@sblondon) - Display which theme is the default one in colored output, see #2838 (@sblondon) +- Add support for Apple Silicon, see #2967 (@someposer) ## Syntaxes From 754ae3b926fc7bc627bc0d537bb750062091cfe4 Mon Sep 17 00:00:00 2001 From: someposer Date: Sat, 25 May 2024 14:56:15 -0500 Subject: [PATCH 4/4] Update CHANGELOG.md Co-authored-by: Martin Nordholts --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 374081b79a..68d21b5e42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,7 @@ - Faster startup by offloading glob matcher building to a worker thread #2868 (@cyqsimon) - Display which theme is the default one in basic output (no colors), see #2937 (@sblondon) - Display which theme is the default one in colored output, see #2838 (@sblondon) -- Add support for Apple Silicon, see #2967 (@someposer) +- Add aarch64-apple-darwin ("Apple Silicon") binary tarballs to releases, see #2967 (@someposer) ## Syntaxes