default: build all platforms in ci

This commit is contained in:
Timothy DeHerrera 2021-01-18 10:34:53 -07:00
parent 8ce3db6326
commit 78adcf86dc
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122

View file

@ -1,4 +1,6 @@
(import
let
inherit (flake.inputs.nixos.lib) recurseIntoAttrs mapAttrs;
flake = (import
(
fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
@ -7,4 +9,7 @@
)
{
src = ./.;
}).defaultNix.packages.x86_64-linux
}).defaultNix;
recurse = mapAttrs (_: v: recurseIntoAttrs v) flake.packages;
in
recurse