diff options
author | Vincent Ambo <mail@tazj.in> | 2022-12-20T16·23+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-12-21T14·08+0000 |
commit | a95dea719f1b44231c485e52816c5fff4cfe42dd (patch) | |
tree | c4193fe7325f9f660c532866c1817cea22cda11f /tvix/nar | |
parent | f467df06dcfa8383c3bd36e7877b8cf900e973c9 (diff) |
chore(tvix/nar): add CI build target r/5450
Change-Id: Ic73a391da9a733cade26114ab1127907c8d62a57 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7598 Reviewed-by: flokli <flokli@flokli.de> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/nar')
-rw-r--r-- | tvix/nar/Cargo.lock | 7 | ||||
-rw-r--r-- | tvix/nar/Cargo.toml | 2 | ||||
-rw-r--r-- | tvix/nar/default.nix | 5 |
3 files changed, 6 insertions, 8 deletions
diff --git a/tvix/nar/Cargo.lock b/tvix/nar/Cargo.lock deleted file mode 100644 index 1288e13db8de..000000000000 --- a/tvix/nar/Cargo.lock +++ /dev/null @@ -1,7 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "tvix_nar" -version = "0.0.0" diff --git a/tvix/nar/Cargo.toml b/tvix/nar/Cargo.toml index f27e9a0cb8a7..6ec8072c3abc 100644 --- a/tvix/nar/Cargo.toml +++ b/tvix/nar/Cargo.toml @@ -1,4 +1,4 @@ [package] -name = "tvix_nar" +name = "tvix-nar" version = "0.0.0" edition = "2021" diff --git a/tvix/nar/default.nix b/tvix/nar/default.nix new file mode 100644 index 000000000000..4d62add05982 --- /dev/null +++ b/tvix/nar/default.nix @@ -0,0 +1,5 @@ +{ depot, ... }: + +depot.tvix.crates.workspaceMembers.tvix-nar.build.override { + runTests = true; +} |