From 0ef31a870d319a80dc2af92c07761a2c3cef16a7 Mon Sep 17 00:00:00 2001 From: Ryan Burns Date: Thu, 28 Jan 2021 19:20:19 -0800 Subject: [PATCH] release-cross: add ppc64le, ppc64le-musl Our support for ppc64le is pretty good now. Let's add these so it's easier to spot and rectify breakage. The toolchains are already built for their bootstrap tools, so this shouldn't put much build strain on hydra. --- pkgs/top-level/release-cross.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix index df476db0a7a..639c54a8a1e 100644 --- a/pkgs/top-level/release-cross.nix +++ b/pkgs/top-level/release-cross.nix @@ -150,6 +150,9 @@ in x86_64-musl = mapTestOnCross lib.systems.examples.musl64 linuxCommon; + ppc64le = mapTestOnCross lib.systems.examples.powernv linuxCommon; + ppc64le-musl = mapTestOnCross lib.systems.examples.musl-power linuxCommon; + android64 = mapTestOnCross lib.systems.examples.aarch64-android-prebuilt linuxCommon; android32 = mapTestOnCross lib.systems.examples.armv7a-android-prebuilt linuxCommon;