From a8371b01df1b1d16f682e6685cc62fcba4bc54d2 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 6 Dec 2020 13:59:48 +0100 Subject: 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 Tested-by: BuildkiteCI --- users/tazjin/aoc2020/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/users/tazjin/aoc2020/default.nix b/users/tazjin/aoc2020/default.nix index ebb6e7b0c0da..5989224f8d62 100644 --- a/users/tazjin/aoc2020/default.nix +++ b/users/tazjin/aoc2020/default.nix @@ -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; +} -- cgit 1.4.1