Skip to content

Commit

Permalink
Improved debug workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitriy-b committed Oct 8, 2024
1 parent 7a61e79 commit a511566
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/dashboard_debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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:
Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit a511566

Please sign in to comment.