refactor(tazjin/aoc2020): Build all solutions in CI

This changes the structure of the output, too, where all AoC solutions
now end up in a big folder with `bin/day$n` executables.

Change-Id: I77928f4129489d06779b50059835925652688c9c
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2231
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2020-12-06 13:59:48 +01:00 committed by tazjin
parent 54f143b8f7
commit a8371b01df

View file

@ -11,12 +11,12 @@ let
getDay = f: head (matchSolution f);
solutionFiles = filter (e: dir."${e}" == "regular" && isSolution e) (attrNames dir);
solutions = map (f: let day = getDay f; in {
name = day;
value = depot.nix.writeElispBin {
name = "aoc2020";
solutions = map (f: let day = getDay f; in depot.nix.writeElispBin {
name = day;
deps = p: with p; [ dash s ht p.f ];
src = ./. + ("/" + f);
};
}) solutionFiles;
in listToAttrs solutions
in depot.third_party.symlinkJoin {
name = "aoc2020";
paths = solutions;
}