From 7f3c918fa83e03ce2b30f685a51f4159a09649f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Misty=20De=20M=C3=A9o?= Date: Fri, 17 Nov 2023 12:49:32 -0800 Subject: [PATCH] chore: disable aarch64-apple-darwin An upstream issue means pkg can't build for aarch64 from x86_64: https://github.com/vercel/pkg/issues/2000 --- dist.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist.toml b/dist.toml index 2e42cf1..bf3fd6e 100644 --- a/dist.toml +++ b/dist.toml @@ -18,7 +18,7 @@ installers = ["shell", "powershell", "homebrew"] # A GitHub repo to push Homebrew formulas to tap = "axodotdev/homebrew-tap" # Target platforms to build apps for (Rust target-triple syntax) -targets = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-pc-windows-msvc"] +targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc"] # Publish jobs to run in CI publish-jobs = ["homebrew"] # Publish jobs to run in CI