chore: add cdk-redb to precommit check

This commit is contained in:
thesimplekid
2024-04-24 17:06:35 +01:00
parent c77feec5e5
commit 54a0b13104
2 changed files with 5 additions and 2 deletions

View File

@@ -20,7 +20,7 @@
flakeboxLib = flakebox.lib.${system} { };
rustSrc = flakeboxLib.filterSubPaths {
root = builtins.path {
name = "cashu-sdk";
name = "cdk";
path = ./.;
};
paths = [ "crates/cashu" "crates/cashu-sdk" ];
@@ -30,7 +30,7 @@
toolchainsStd = flakeboxLib.mkStdToolchains { };
toolchainNative = flakeboxLib.mkFenixToolchain {
targets = (pkgs.lib.getAttrs [ "default" ] targetsStd);
targets = (pkgs.lib.getAttrs [ "default" "wasm32-unknown" ] targetsStd);
};
commonArgs = {

View File

@@ -28,6 +28,9 @@ buildargs=(
"-p cdk --no-default-features --features wallet"
"-p cdk --no-default-features --features mint"
"-p cdk --no-default-features --features nut13"
"-p cdk-redb"
"-p cdk-redb --no-default-features --features wallet"
"-p cdk-redb --no-default-features --features mint"
)
for arg in "${buildargs[@]}"; do