chore(tvix/nar): add CI build target

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
This commit is contained in:
Vincent Ambo 2022-12-20 19:23:07 +03:00 committed by tazjin
parent f467df06dc
commit a95dea719f
6 changed files with 33 additions and 8 deletions

7
tvix/nar/Cargo.lock generated
View file

@ -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"

View file

@ -1,4 +1,4 @@
[package]
name = "tvix_nar"
name = "tvix-nar"
version = "0.0.0"
edition = "2021"

5
tvix/nar/default.nix Normal file
View file

@ -0,0 +1,5 @@
{ depot, ... }:
depot.tvix.crates.workspaceMembers.tvix-nar.build.override {
runTests = true;
}