summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2021-12-14 02:40:06 +0100
committersterni <sternenseemann@systemli.org>2021-12-16 18:18:26 +0100
commit464e152564c47b87233dbf1169123f02429e057b (patch)
treebb9eda5b07e5155f2c33fa91d60fc1c63510aca5
parentMerge pull request #150976 from NixOS/backport-149374-to-release-21.11 (diff)
downloadnixpkgs-464e152564c47b87233dbf1169123f02429e057b.tar.gz
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. (cherry picked from commit 2d04319d0cba452a2dc00410b2afdbc18ede28b6)
-rw-r--r--lib/systems/supported.nix5
1 files 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"