Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
NanuIjaz committed Nov 10, 2023
2 parents 61a144b + 35ef821 commit 600510c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,9 @@
cardano-db-sync-docker = callPackage ./nix/docker.nix {
inherit (inputs.iohkNix.lib) evalService;
};
cardano-smash-server-no-basic-auth = (project.appendModule {
modules = [{packages.cardano-smash-server.flags.disable-basic-auth = true;}];
}).exes.cardano-smash-server;

# TODO: macOS builders are resource-constrained and cannot run the detabase
# integration tests. Add these back when we get beefier builders.
Expand All @@ -331,17 +334,19 @@
} // lib.optionalAttrs (system == "x86_64-darwin") {
inherit cardano-db-sync-macos;
} // {
inherit cardano-smash-server-no-basic-auth;
checks = staticChecks;
};

checks = staticChecks;

packages = lib.optionalAttrs (system == "x86_64-linux") {
inherit cardano-db-sync-linux cardano-db-sync-docker;

default = flake.packages."cardano-db-sync:exe:cardano-db-sync";
} // lib.optionalAttrs (system == "x86_64-darwin") {
inherit cardano-db-sync-macos;
} // {
inherit cardano-smash-server-no-basic-auth;
};
}));

Expand Down

0 comments on commit 600510c

Please sign in to comment.