Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Commit e06f308

Browse files
authored
Merge pull request #3509 from input-output-hk/devops-1027-generator-non-static
[DEVOPS-1027] make hydra show metrics for derivations
2 parents 4c07ccf + ca6c305 commit e06f308

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

default.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ let
5757
cardano-sl-wallet-static = justStaticExecutablesGitRev super.cardano-sl-wallet;
5858
cardano-sl-client = addRealTimeTestLogs super.cardano-sl-client;
5959
cardano-sl-generator = addRealTimeTestLogs super.cardano-sl-generator;
60-
cardano-sl-auxx = justStaticExecutablesGitRev super.cardano-sl-auxx;
61-
cardano-sl-wallet-new = justStaticExecutablesGitRev super.cardano-sl-wallet-new;
60+
cardano-sl-auxx-static = justStaticExecutablesGitRev super.cardano-sl-auxx;
61+
cardano-sl-wallet-new-static = justStaticExecutablesGitRev super.cardano-sl-wallet-new;
6262
cardano-sl-node-static = justStaticExecutablesGitRev self.cardano-sl-node;
6363
cardano-sl-explorer-static = justStaticExecutablesGitRev self.cardano-sl-explorer;
6464
cardano-report-server-static = justStaticExecutablesGitRev self.cardano-report-server;
65-
cardano-sl-tools = justStaticExecutablesGitRev (overrideCabal super.cardano-sl-tools (drv: {
65+
cardano-sl-tools-static = justStaticExecutablesGitRev (overrideCabal super.cardano-sl-tools (drv: {
6666
# waiting on load-command size fix in dyld
6767
doCheck = ! pkgs.stdenv.isDarwin;
6868
}));

release.nix

+2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ let
3939
cardano-sl-wallet-new = supportedSystems;
4040
all-cardano-sl = supportedSystems;
4141
cardano-sl-explorer-static = [ "x86_64-linux" ];
42+
cardano-sl-explorer = [ "x86_64-linux" ];
4243
cardano-sl-explorer-frontend = [ "x86_64-linux" ];
4344
cardano-report-server-static = [ "x86_64-linux" ];
45+
cardano-report-server = [ "x86_64-linux" ];
4446
stack2nix = supportedSystems;
4547
purescript = supportedSystems;
4648
daedalus-bridge = supportedSystems;

scripts/launch/connect-to-cluster/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ let
3434
then { inherit relays confKey confFile; }
3535
else environments.${environment};
3636
executables = {
37-
wallet = if useStackBinaries then "stack exec -- cardano-node" else "${iohkPkgs.cardano-sl-wallet-new}/bin/cardano-node";
37+
wallet = if useStackBinaries then "stack exec -- cardano-node" else "${iohkPkgs.cardano-sl-wallet-new-static}/bin/cardano-node";
3838
explorer = if useStackBinaries then "stack exec -- cardano-explorer" else "${iohkPkgs.cardano-sl-explorer-static}/bin/cardano-explorer";
39-
x509gen = if useStackBinaries then "stack exec -- cardano-x509-certificates" else "${iohkPkgs.cardano-sl-tools}/bin/cardano-x509-certificates";
39+
x509gen = if useStackBinaries then "stack exec -- cardano-x509-certificates" else "${iohkPkgs.cardano-sl-tools-static}/bin/cardano-x509-certificates";
4040
};
4141
ifWallet = localLib.optionalString (executable == "wallet");
4242
iohkPkgs = import ./../../../default.nix { inherit config system pkgs gitrev; };

scripts/launch/demo-cluster/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ with localLib;
2323

2424
let
2525
stackExec = optionalString useStackBinaries "stack exec -- ";
26-
cardanoDeps = with iohkPkgs; [ cardano-sl-tools cardano-sl-wallet-new cardano-sl-node-static ];
26+
cardanoDeps = with iohkPkgs; [ cardano-sl-tools-static cardano-sl-wallet-new-static cardano-sl-node-static ];
2727
demoClusterDeps = with pkgs; [ jq coreutils curl gnused openssl ];
2828
allDeps = demoClusterDeps ++ (optionals (!useStackBinaries ) cardanoDeps);
2929
walletConfig = {

0 commit comments

Comments
 (0)