From a25675804c4f429fab5ee5201fe25e89865dfd13 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 7 Feb 2022 22:28:59 +0300 Subject: chore(nix/buildLisp): meta.targets -> meta.ci.targets Change-Id: Ic8effcc94f3fcfa283436be3e5c0477ef89e9e94 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5247 Tested-by: BuildkiteCI Reviewed-by: sterni Autosubmit: tazjin --- nix/buildLisp/README.md | 2 +- nix/buildLisp/default.nix | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'nix/buildLisp') diff --git a/nix/buildLisp/README.md b/nix/buildLisp/README.md index 214700750d..0d1e469834 100644 --- a/nix/buildLisp/README.md +++ b/nix/buildLisp/README.md @@ -220,7 +220,7 @@ buildLisp.library { Additionally a `brokenOn` parameter is accepted which takes a list of implementation names on which the derivation is not expected to work. -This only influences `meta.targets` which is read by depot's CI to +This only influences `meta.ci.targets` which is read by depot's CI to check which variants (see "Implementations") of the derivation to build, so it may not be useful outside of depot. diff --git a/nix/buildLisp/default.nix b/nix/buildLisp/default.nix index a37ebcb87c..13c215a467 100644 --- a/nix/buildLisp/default.nix +++ b/nix/buildLisp/default.nix @@ -164,7 +164,9 @@ let # meta is done via passthru to minimize rebuilds caused by overriding meta = (old.passthru.meta or { }) // { - inherit targets; + ci = (old.passthru.meta.ci or { }) // { + inherit targets; + }; }; } // builtins.listToAttrs (builtins.map (impl: { -- cgit 1.4.1