Skip to content

Commit

Permalink
cluster-shell: fix missing executables
Browse files Browse the repository at this point in the history
  • Loading branch information
deepfire committed Jun 24, 2022
1 parent 43dc3d0 commit 64b0ca8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion nix/workbench/scenario.sh
Expand Up @@ -140,7 +140,7 @@ scenario_setup_workload_termination() {
progress "scenario" "until end: workload $(yellow $till_workload), $(blue shutdown) $(yellow $till_shutdown), $(blue earliest) $(yellow $till_earliest)"
progress "scenario" "shutdown tolerance: $(yellow $termination_tolerance_s) s"
# progress "scenario" "until end: workload $(yellow $(date --date=@$__scenario_watcher_end_time))"
progress "scenario" "termination in $(white $((till_earliest + termination_tolerance_s))) seconds.."
progress "scenario" "force-termination in $(white $((till_earliest + termination_tolerance_s))) seconds.."
scenario_watcher &
__scenario_watcher_pid=$!
}
Expand Down
9 changes: 9 additions & 0 deletions shell.nix
Expand Up @@ -99,6 +99,15 @@ let
cluster.interactive-restart
] ++ lib.optional haveGlibcLocales pkgs.glibcLocales
## Workbench's main script is called directly in dev mode.
++ lib.optionals (!useCabalRun)
[
cardano-cli
cardano-node
cardano-topology
cardano-tracer
locli
tx-generator
]
++ lib.optionals (!workbenchDevMode)
[
cluster.workbench.workbench
Expand Down

0 comments on commit 64b0ca8

Please sign in to comment.