Skip to content

Commit 733841e

Browse files
authored
qa-tests: split integration tests on Erigon v2 and v3 (#2371)
1 parent 04d3096 commit 733841e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/rpc-integration-tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ on:
1111

1212
jobs:
1313
integration-test-suite:
14-
runs-on: self-hosted
14+
strategy:
15+
matrix:
16+
backend: [ Erigon2 ]
17+
runs-on: [ self-hosted, "${{ matrix.backend }}" ]
1518
env:
1619
ERIGON_DATA_DIR: /opt/erigon-versions/reference-version/datadir
1720
RPC_PAST_TEST_DIR: /opt/rpc-past-tests

.github/workflows/rpc-performance-tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ on:
77

88
jobs:
99
performance-test-suite:
10-
runs-on: self-hosted
10+
strategy:
11+
matrix:
12+
backend: [ Erigon2 ]
13+
runs-on: [ self-hosted, "${{ matrix.backend }}" ]
1114
env:
1215
ERIGON_DIR: /opt/erigon-versions/reference-version
1316
ERIGON_DATA_DIR: /opt/erigon-versions/reference-version/datadir

0 commit comments

Comments
 (0)