-
Notifications
You must be signed in to change notification settings - Fork 584
Ci for rosetta block race test #18144
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: compatible
Are you sure you want to change the base?
Conversation
|
!ci-build-me |
2 similar comments
|
!ci-build-me |
|
!ci-build-me |
b32555d to
b3582c4
Compare
|
!ci-build-me |
1 similar comment
|
!ci-build-me |
c5b84d2 to
0fc75a4
Compare
|
!ci-build-me |
10 similar comments
|
!ci-build-me |
|
!ci-build-me |
|
!ci-build-me |
|
!ci-build-me |
|
!ci-build-me |
|
!ci-build-me |
|
!ci-build-me |
|
!ci-build-me |
|
!ci-build-me |
|
!ci-build-me |
72c42de to
7733e53
Compare
|
!ci-build-me |
7733e53 to
3973a55
Compare
|
!ci-build-me |
1 similar comment
|
!ci-build-me |
59d82b9 to
b375200
Compare
|
!ci-build-me |
b375200 to
e665e82
Compare
|
!ci-build-me |
| LEDGER_ARCHIVE="ledger.tar" | ||
| LEDGER_DIR="ledger" | ||
|
|
||
| echo "Downloading ledger archive from $LEDGER_URL ..." |
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.
Suggest fusing this so we're not wasting I/O to store the tar itself.
echo "Downloading and extracting ledger archive from $LEDGER_URL ..."
mkdir -p "$LEDGER_DIR"
curl -L "$LEDGER_URL" | tar -x -C "$LEDGER_DIR"
scripts/rosetta/test-block-race.sh
Outdated
|
|
||
| echo "Running warmup mina advanced test submit-to-archive (1 block, 1 payment, 0 zkapp)..." | ||
| TMP=tmp MINA_PRIVKEY_PASS="$MINA_EXE" advanced test submit-to-archive \ | ||
| TMP=tmp MINA_PRIVKEY_PASS="" "$MINA_EXE" advanced test submit-to-archive \ |
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.
What is TMP? Is this AI hallucination?
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.
That was in the original script, done by George. I think this is passing TMP down to inner script as we are not running export TMP
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.
That was in the original script, done by George. I think this is passing TMP down to inner script as we are not running export TMP
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.
could you point to me where it's used? Can't find it at all
…race-simplification Simplify rosetta block race test CI integration.
|
!ci-build-me |
1 similar comment
|
!ci-build-me |
Implementing CI test for block race test. In order to implement it i have to slightly adjust scripts .