From 5aeb5d8bf1d846bdf377c41436e23ea393b6d88f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 18 Sep 2024 21:43:15 +0200 Subject: [PATCH] Disable the armv6l and freebsd cross-builds These have been broken for a while (in fact the armv6l build has never succeeded in Hydra), so let's disable them until somebody fixes them. --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index cbcf100211b9..aa4e48706eab 100644 --- a/flake.nix +++ b/flake.nix @@ -33,11 +33,11 @@ systems = linuxSystems ++ darwinSystems; crossSystems = [ - "armv6l-unknown-linux-gnueabihf" + #"armv6l-unknown-linux-gnueabihf" "armv7l-unknown-linux-gnueabihf" "riscv64-unknown-linux-gnu" "x86_64-unknown-netbsd" - "x86_64-unknown-freebsd" + #"x86_64-unknown-freebsd" "x86_64-w64-mingw32" ];