QA - RPC Performance Tests #287
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: QA - RPC Performance Tests | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 1-6' # Runs every day from Monday to Saturday at 00:00 AM UTC | |
jobs: | |
performance-test-suite: | |
strategy: | |
matrix: | |
backend: [ Erigon3 ] | |
runs-on: [ self-hosted, "${{ matrix.backend }}" ] | |
env: | |
ERIGON_DIR: /opt/erigon-versions/reference-version | |
ERIGON_DATA_DIR: /opt/erigon-versions/reference-version/datadir | |
RPC_PAST_TEST_DIR: /opt/rpc-past-tests | |
ERIGON_QA_PATH: /opt/erigon-qa | |
steps: | |
- name: Checkout Silkworm repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: "0" | |
- uses: ./.github/actions/perf-common-steps | |
with: | |
activation_mode: full | |
measure_erigon: true |