From a3a3cc4b8c3f0b701860b24ab53f4fa420f9c8d6 Mon Sep 17 00:00:00 2001 From: Ali Abrar Date: Sun, 10 Sep 2023 07:19:07 -0400 Subject: [PATCH] ci: cache aarch64-darwin command --- release.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/release.nix b/release.nix index 6912efb69..4b8c940ea 100644 --- a/release.nix +++ b/release.nix @@ -4,7 +4,10 @@ rec { recurseForDerivations = true; build = import ./all-builds.nix { inherit supportedSystems; }; test = import ./all-tests.nix { inherit supportedSystems; }; - beta = (import ./skeleton { system = "aarch64-darwin"; }).shells.ghc; + beta = { + skeleton =(import ./skeleton { system = "aarch64-darwin"; }).shells.ghc; + command =(import ./.{ system = "aarch64-darwin"; }).command; + }; inherit (build) metaCache; }