mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
Forgot to configure flags (#7701)
This commit is contained in:
parent
1e575ea172
commit
88410559c6
@ -75,6 +75,7 @@ COPY --from=builder /app/build/bin/state /usr/local/bin/state
|
||||
COPY --from=builder /app/build/bin/txpool /usr/local/bin/txpool
|
||||
COPY --from=builder /app/build/bin/verkle /usr/local/bin/verkle
|
||||
COPY --from=builder /app/build/bin/caplin-phase1 /usr/local/bin/caplin-phase1
|
||||
COPY --from=builder /app/build/bin/caplin-regression /usr/local/bin/caplin-regression
|
||||
|
||||
EXPOSE 8545 \
|
||||
8551 \
|
||||
|
@ -27,6 +27,8 @@ func main() {
|
||||
step := flag.Int("step", 32, "how often to log performance")
|
||||
pprof := flag.Bool("pprof", true, "turn on profiling")
|
||||
loop := flag.Bool("loop", true, "loop the test in an infinite loop")
|
||||
testsDir := flag.String("testsDir", "cmd/caplin-regression/caplin-tests", "directory to the tests")
|
||||
|
||||
all := flag.Bool("all", true, "loop trhough all the test")
|
||||
|
||||
flag.Parse()
|
||||
@ -35,7 +37,7 @@ func main() {
|
||||
return
|
||||
}
|
||||
r, err := regression.NewRegressionTester(
|
||||
"cmd/caplin-regression/caplin-tests",
|
||||
*testsDir,
|
||||
)
|
||||
if *pprof {
|
||||
// Server for pprof
|
||||
|
Loading…
Reference in New Issue
Block a user