Skip to content

Commit

Permalink
wb | rename pkgs version of workbench-runner accordingly
Browse files Browse the repository at this point in the history
  • Loading branch information
fmaste committed Sep 12, 2024
1 parent 1adf1a2 commit a2a37e1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
// optionalAttrs (system == "x86_64-linux")
(let workbenchTest =
{ profileName, workbenchStartArgs ? [] }:
(pkgs.workbench-runner
(pkgs.custom-config-workbench-runner
{
inherit profileName workbenchStartArgs;
backendName = "supervisor";
Expand Down
4 changes: 2 additions & 2 deletions nix/pkgs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let
workbench = pkgs.callPackage ./workbench {};

# Workbench runner instantiated by parameters from customConfig:
workbench-runner =
custom-config-workbench-runner =
{ stateDir ? customConfig.localCluster.stateDir
, batchName ? customConfig.localCluster.batchName
, profileName ? customConfig.localCluster.profileName
Expand All @@ -34,7 +34,7 @@ in with final;
{
inherit (cardanoNodeProject.args) compiler-nix-name;

inherit workbench workbench-runner;
inherit workbench custom-config-workbench-runner;

cabal = haskell-nix.cabal-install.${compiler-nix-name};

Expand Down
4 changes: 2 additions & 2 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ let
inherit cardano-mainnet-mirror;
inherit workbenchDevMode;
inherit withHoogle;
workbench-runner = pkgs.workbench-runner
workbench-runner = pkgs.custom-config-workbench-runner
{ inherit profileName backendName useCabalRun;
profiling = profilingEff;
};
};

devops =
let profileName = "devops-bage";
workbench-runner = pkgs.workbench-runner
workbench-runner = pkgs.custom-config-workbench-runner
{
inherit profileName;
backendName = "supervisor";
Expand Down

0 comments on commit a2a37e1

Please sign in to comment.