-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
[CI] Adjust the replay verify job #5849
Conversation
.lock() | ||
.persisted_and_latest_view() | ||
.1 | ||
.version() |
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.
this is None for the chunk containing the genesis. Needs something like this #5848
- name: run replay-verify in parallel | ||
shell: bash | ||
run: | | ||
mkdir $NAME |
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.
NAME
not defined?
env: | ||
BUCKET: aptos-testnet-backup-2223d95b | ||
SUB_DIR: e1 | ||
HISTORY_START: 0 |
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.
not used?
jobs: | ||
replay-transactions: | ||
timeout-minutes: 720 | ||
runs-on: high-perf-docker-with-local-ssd |
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.
Can use a different type? we have only one instance of this I think.
jobs: | ||
replay-transactions: | ||
timeout-minutes: 720 | ||
runs-on: high-perf-docker-with-local-ssd |
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.
can use a different type
bbf81c7
to
878b498
Compare
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.
please make sure a manual run (on at least the mainnet) goes through before landing.
@@ -17,6 +17,7 @@ env: | |||
BUCKET: aptos-testnet-backup-2223d95b | |||
SUB_DIR: e1 | |||
HISTORY_START: 350000000 |
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.
nit:
This version is larger than the two versions below..
Document if you intentionally do this.
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.
Yep. I intentionally set this because I don't yet know what are the other versions that broke the replay. I'm planning to run it manually to see the configs for testnet.
with: | ||
ref: ${{ inputs.GIT_SHA }} | ||
fetch-depth: 0 # get all the history because cargo xtest --change-since origin/main requires it. | ||
- uses: ./.github/actions/replay-verify |
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.
./.github/actions/verify-modules
?
with: | ||
ref: ${{ inputs.GIT_SHA }} | ||
fetch-depth: 0 # get all the history because cargo xtest --change-since origin/main requires it. | ||
- uses: ./.github/actions/replay-verify |
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.
same as above?
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.
Ahh great catch...
48dd929
to
246a941
Compare
3c42644
to
92e8ab3
Compare
92e8ab3
to
4bf5ebf
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
✅ Forge suite
|
✅ Forge suite
|
* [replay-verify] Add adjust the CI task * fixup! [replay-verify] Add adjust the CI task
* [replay-verify] Add adjust the CI task * fixup! [replay-verify] Add adjust the CI task
* [replay-verify] Add adjust the CI task * fixup! [replay-verify] Add adjust the CI task
Description
Made two changes to the replay verify pipeling:
Test Plan
TBD