Skip to content

Commit

Permalink
SQUASH
Browse files Browse the repository at this point in the history
  • Loading branch information
fmaste committed Nov 19, 2024
1 parent 5a0dc9f commit 42d79f5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
14 changes: 11 additions & 3 deletions nix/workbench/service/generator.nix
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,17 @@ let
############################### VOTING ###############################
############################### VOTING ###############################
############################### VOTING ###############################
${import ./voting.nix {inherit pkgs profile nodeSpecs;}}
workflow_generator \
${if profile.composition.with_explorer then "explorer" else "node-0"}
${if profile.generator.drep_voting or false
then
''
${import ./voting.nix {inherit pkgs profile nodeSpecs;}}
workflow_generator \
${if profile.composition.with_explorer then "explorer" else "node-0"}
''
else
''
''
}
############################### VOTING ###############################
############################### VOTING ###############################
############################### VOTING ###############################
Expand Down
10 changes: 9 additions & 1 deletion nix/workbench/service/healthcheck.nix
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,15 @@ let
# Conway/governance functions! #######################################
######################################################################
${import ./voting.nix {inherit pkgs profile nodeSpecs;}}
${if profile.generator.drep_voting or false
then
''
${import ./voting.nix {inherit pkgs profile nodeSpecs;}}
''
else
''
''
}
if test -n "''${NOMAD_DEBUG:-}"
then
Expand Down
2 changes: 1 addition & 1 deletion wb_profiles.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PROFILES_K3 := k3-3ep-5kTx-10000kU-1300kD-64kbs-fixed-loaded k3-3ep-9kTx-10000kU
PROFILES_SCENARIOS := chainsync-early-byron chainsync-early-byron-notracer chainsync-early-byron-oldtracing chainsync-early-alonzo chainsync-early-alonzo-notracer chainsync-early-alonzo-p2p chainsync-early-alonzo-oldtracing devops idle latency-nomadperf latency-nomadperfssd tracer-only
PROFILES_LEGACY := ci-test-dense10 dish dish-10M dish-plutus dish-10M-plutus
PROFILES_SCALING := faststartup-24M
PROFILES_NOMAD_PERF := value-nomadperf value-nomadperf-nop2p value-drep1k-nomadperf value-drep2k-nomadperf value-drep10k-nomadperf value-drep100k-nomadperf value-oldtracing-nomadperf value-oldtracing-nomadperf-nop2p value-volt-nomadperf plutus-nomadperf plutus-nomadperf-nop2p plutus-drep1k-nomadperf plutus-drep2k-nomadperf plutus-drep10k-nomadperf plutus-drep100k-nomadperf plutus24-nomadperf plutus-secp-ecdsa-nomadperf plutus-secp-schnorr-nomadperf plutusv3-blst-nomadperf plutusv3-blst-double-nomadperf plutusv3-blst-half-nomadperf plutus-volt-nomadperf fast-nomadperf fast-nomadperf-nop2p ci-test-nomadperf ci-test-nomadperf-nop2p ci-test-oldtracing-nomadperf default-nomadperf-nop2p default-nomadperf oldtracing-nomadperf oldtracing-nomadperf-nop2p ci-bench-nomadperf ci-bench-nomadperf-nop2p ci-bench-oldtracing-nomadperf
PROFILES_NOMAD_PERF := value-nomadperf value-nomadperf-nop2p value-drep1k-nomadperf value-drep2k-nomadperf value-drep10k-nomadperf value-drep100k-nomadperf value-oldtracing-nomadperf value-oldtracing-nomadperf-nop2p value-volt-nomadperf plutus-nomadperf plutus-nomadperf-nop2p plutus-drep1k-nomadperf plutus-drep2k-nomadperf plutus-drep10k-nomadperf plutus-drep100k-nomadperf plutus24-nomadperf plutus-secp-ecdsa-nomadperf plutus-secp-schnorr-nomadperf plutusv3-blst-nomadperf plutusv3-blst-double-nomadperf plutusv3-blst-half-nomadperf plutus-volt-nomadperf fast-nomadperf fast-nomadperf-nop2p ci-test-nomadperf ci-test-nomadperf-nop2p ci-test-oldtracing-nomadperf default-nomadperf-nop2p default-nomadperf oldtracing-nomadperf oldtracing-nomadperf-nop2p ci-bench-nomadperf ci-bench-nomadperf-nop2p ci-bench-oldtracing-nomadperf value-voting-volt-nomadperf
PROFILES_NOMAD_PERFSSD := utxoscale-solo-12M16G-nomadperfssd utxoscale-solo-12M64G-nomadperfssd utxoscale-solo-24M64G-nomadperfssd fast-nomadperfssd value-nomadperfssd

LOCAL_PROFILES += $(PROFILES_EMPTY)
Expand Down

0 comments on commit 42d79f5

Please sign in to comment.