From 33c789c384078e1148afd904de78af976997419f Mon Sep 17 00:00:00 2001 From: kumy Date: Sun, 12 May 2024 05:12:13 +0200 Subject: [PATCH] ci: Attempt to add aarch64 osx build to CI (#52) Add target `aarch64-apple-darwin` as done in https://github.com/sharkdp/fd/pull/1552 --- .github/workflows/rust.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d5583ac..0038b6f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -44,6 +44,7 @@ jobs: - { target: i686-unknown-linux-gnu , os: ubuntu-20.04 , use-cross: true } - { target: i686-unknown-linux-musl , os: ubuntu-20.04 , use-cross: true } - { target: x86_64-apple-darwin , os: macos-12 } + - { target: aarch64-apple-darwin , os: macos-14 } - { target: x86_64-pc-windows-msvc , os: windows-2019 , suffix: .exe } - { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04 } - { target: x86_64-unknown-linux-musl , os: ubuntu-20.04 , use-cross: true }