diff --git a/.github/workflows/dashboard_debug.yml b/.github/workflows/dashboard_debug.yml index 044f243526..7207bbd2e1 100644 --- a/.github/workflows/dashboard_debug.yml +++ b/.github/workflows/dashboard_debug.yml @@ -19,11 +19,13 @@ on: default: "withdrawals" type: choice options: + - "" - withdrawals - cancun - engine-api - engine-auth - engine-exchange-capabilities + - network branch: description: "Branch to run tests on" required: true @@ -32,6 +34,12 @@ on: description: "Hive simulator" required: true default: "ethereum/gnosis-engine-jq" + type: choice + options: + - ethereum/gnosis-engine-jq + - ethereum/engine-gnosis-erigon + - ethereum/engine-gnosis-nethermind + - smoke parallelism: description: "Parallelism" required: true @@ -44,6 +52,22 @@ on: required: true default: "true" type: boolean + log_level: + description: "Log level" + default: "5" + type: number + min: 1 + max: 5 + sim_log_level: + description: "Simulator log level" + default: "5" + type: number + min: 1 + max: 5 + client_check_time_limit: + description: "Single test timeout" + default: "10m" + type: string jobs: hive-run: @@ -79,7 +103,7 @@ jobs: - name: Run tests continue-on-error: true run: | - HIVE_TTD_ENABLED=${{ github.event.inputs.hive_ttd_enabled }} ./hive --sim "${{ github.event.inputs.simulator }}" --sim.limit="${{ github.event.inputs.suite }}" --client "${{ github.event.inputs.client }}" --results-root=${{ github.workspace }}/runs --loglevel=5 --client.checktimelimit=10m --docker.output --sim.parallelism=${{ github.event.inputs.parallelism }} + HIVE_TTD_ENABLED=${{ github.event.inputs.hive_ttd_enabled }} ./hive --sim "${{ github.event.inputs.simulator }}" --sim.limit="${{ github.event.inputs.suite }}" --client "${{ github.event.inputs.client }}" --results-root=${{ github.workspace }}/runs --sim.loglevel=${{ github.event.inputs.sim_log_level }} --loglevel=${{ github.event.inputs.log_level }} --client.checktimelimit=${{ github.event.inputs.client_check_time_limit }} --docker.output --sim.parallelism=${{ github.event.inputs.parallelism }} - name: Send file over SSH if: always()