From 9066c52e5ae8eebac0593bf807faa2c38387ffb1 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Tue, 14 Dec 2021 02:40:06 +0100 Subject: [PATCH] lib.systems.supported: remove aarch64-darwin from Tier 3 list While it is a fact of life that aarch64-darwin is built on Hydra, it has never formally been elevated from the Tier 7 state it was originally assigned in RFC 0046. Since platform Tier status is not only descriptive, but also normative, a consensus to commit to supporting aarch64-darwin would need to be reached. --- lib/systems/supported.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/systems/supported.nix b/lib/systems/supported.nix index ef429454f046..a1c038a5c8bc 100644 --- a/lib/systems/supported.nix +++ b/lib/systems/supported.nix @@ -4,7 +4,9 @@ { lib }: rec { # List of systems that are built by Hydra. - hydra = tier1 ++ tier2 ++ tier3; + hydra = tier1 ++ tier2 ++ tier3 ++ [ + "aarch64-darwin" + ]; tier1 = [ "x86_64-linux" @@ -16,7 +18,6 @@ rec { ]; tier3 = [ - "aarch64-darwin" "armv6l-linux" "armv7l-linux" "i686-linux"