diff options
author | Vincent Ambo <mail@tazj.in> | 2022-02-07T23·24+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-02-08T12·06+0000 |
commit | 3318982f81c01b570b7021fd9f71aa2bfe192271 (patch) | |
tree | 4de9cfb785bf35d6c662623376eee7ae5abbcc44 /third_party/nix/default.nix | |
parent | 01ec92fc6ba43ea09892e7e939f84f2a9b30d714 (diff) |
chore: move some meta.targets definitions to meta.ci.targets r/3790
Change-Id: Icdec1dec89158fb596c5185ac7105892081947f5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5252 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org> Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'third_party/nix/default.nix')
-rw-r--r-- | third_party/nix/default.nix | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/third_party/nix/default.nix b/third_party/nix/default.nix index 85f3625e52b6..d07011dd0b8a 100644 --- a/third_party/nix/default.nix +++ b/third_party/nix/default.nix @@ -233,9 +233,7 @@ lib.fix (self: pkgs.fullLlvm11Stdenv.mkDerivation { test-vm = import ./test-vm.nix args; }; - meta = { - targets = [ - "checkfmt" - ]; - }; + meta.ci.targets = [ + "checkfmt" + ]; }) |