-
Notifications
You must be signed in to change notification settings - Fork 1.5k
qa-tests: use a specific version of the prebuilt db in RPC tests #19565
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -97,7 +97,7 @@ jobs: | |
| RUN_ID: ${{ needs.setup.outputs.run_id }} | ||
| NETWORK: ${{ needs.setup.outputs.network }} | ||
| ERIGON_REFERENCE_DIR: /opt/erigon-versions/reference-version | ||
| ERIGON_REFERENCE_DATA_DIR: /opt/erigon-versions/reference-version/datadir | ||
| ERIGON_REFERENCE_DATA_DIR: /opt/erigon-versions/reference-version-3.4/datadir | ||
| ERIGON_TESTBED_DATA_DIR: /opt/erigon-testbed/datadir | ||
| TOTAL_TIME_SECONDS: 1200 # 20 minutes | ||
|
Comment on lines
97
to
102
|
||
| GETH_INSTALL_DIR: /opt/go-ethereum | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -88,7 +88,7 @@ jobs: | |||||
| RUN_ID: ${{ needs.setup.outputs.run_id }} | ||||||
| NETWORK: ${{ needs.setup.outputs.network }} | ||||||
| ERIGON_REFERENCE_DIR: /opt/erigon-versions/reference-version | ||||||
|
||||||
| ERIGON_REFERENCE_DIR: /opt/erigon-versions/reference-version | |
| ERIGON_REFERENCE_DIR: /opt/erigon-versions/reference-version-3.4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ERIGON_REFERENCE_DATA_DIR is now versioned, but ERIGON_REFERENCE_DIR remains unversioned and is later used to read production.ini for db_version. This can desync the metadata you record from the actual reference datadir under test; consider reading production.ini relative to ERIGON_REFERENCE_DATA_DIR (../production.ini) or versioning ERIGON_REFERENCE_DIR together with the datadir selection.