From e786a701a83c3b824e8aa950a20a8fcde328d0ef Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Mon, 9 Sep 2024 17:37:44 +0200 Subject: [PATCH] installerScriptForGHA: aarch64-darwin Backport of df3e92ff964ba7e87c426f4bbd621032811ab5e1 https://github.com/NixOS/nix/pull/11009 GitHub Actions seems to have magically switched architectures without changing their identifiers. See https://github.com/actions/runner-images/blob/2813ee66cbe85b31a8322ff8967148548b1a5db9/README.md#available-images Maybe they have more complete documentation elsewhere, but it seems to be incapable of selecting a runner based on architecture. --- build/hydra.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/hydra.nix b/build/hydra.nix index 595aad324..4ac134a11 100644 --- a/build/hydra.nix +++ b/build/hydra.nix @@ -98,7 +98,7 @@ in installerScriptForGHA = installScriptFor [ # Native self.hydraJobs.binaryTarball."x86_64-linux" - self.hydraJobs.binaryTarball."x86_64-darwin" + self.hydraJobs.binaryTarball."aarch64-darwin" # Cross self.hydraJobs.binaryTarballCross."x86_64-linux"."armv6l-unknown-linux-gnueabihf" self.hydraJobs.binaryTarballCross."x86_64-linux"."armv7l-unknown-linux-gnueabihf"