mirror of
https://github.com/Blah-IM/blahrs.git
synced 2025-04-30 16:21:10 +00:00
build(nix): add cargo-llvm-cov
This commit is contained in:
parent
883fac02ae
commit
5143e30fbe
3 changed files with 10 additions and 3 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -1,9 +1,12 @@
|
||||||
|
# Build and test artifacts.
|
||||||
/target
|
/target
|
||||||
*.sqlite*
|
*.sqlite*
|
||||||
*.key
|
*.key
|
||||||
|
*.profraw
|
||||||
|
result
|
||||||
|
result-*
|
||||||
|
|
||||||
|
# Test configurations.
|
||||||
config.toml
|
config.toml
|
||||||
/test-frontend/default.json
|
/test-frontend/default.json
|
||||||
/test-frontend/.well-known
|
/test-frontend/.well-known
|
||||||
result
|
|
||||||
result-*
|
|
||||||
|
|
|
@ -97,7 +97,10 @@ rec {
|
||||||
{
|
{
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
inputsFrom = [ self.packages.${system}.default ];
|
inputsFrom = [ self.packages.${system}.default ];
|
||||||
nativeBuildInputs = [ pkgs.buildPackages.sqlite-interactive ];
|
nativeBuildInputs = [
|
||||||
|
pkgs.buildPackages.sqlite-interactive
|
||||||
|
pkgs.cargo-llvm-cov
|
||||||
|
];
|
||||||
|
|
||||||
env.RUST_LOG = "blahd=debug,blahctl=debug";
|
env.RUST_LOG = "blahd=debug,blahctl=debug";
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,3 +5,4 @@
|
||||||
[toolchain]
|
[toolchain]
|
||||||
channel = "beta-2024-09-10" # 1.82.0-beta.3
|
channel = "beta-2024-09-10" # 1.82.0-beta.3
|
||||||
profile = "default"
|
profile = "default"
|
||||||
|
components = ["llvm-tools"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue