Daily Block Run #33
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: Daily Block Run | |
on: | |
schedule: | |
# At the end of every day | |
- cron: "0 0 * * *" | |
env: | |
RANGE_SIZE: 50 | |
SEQUENCER_REV: 1b1b95cae7ae07b9bc778443ca75ee18008a6bc8 | |
jobs: | |
run-and-compare: | |
runs-on: ubuntu-latest | |
timeout-minutes: 1440 | |
env: | |
LLVM_SYS_191_PREFIX: /usr/lib/llvm-19/ | |
MLIR_SYS_190_PREFIX: /usr/lib/llvm-19/ | |
TABLEGEN_190_PREFIX: /usr/lib/llvm-19/ | |
RPC_ENDPOINT_TESTNET: ${{ secrets.RPC_ENDPOINT_TESTNET }} | |
RPC_ENDPOINT_MAINNET: ${{ secrets.RPC_ENDPOINT_MAINNET }} | |
strategy: | |
matrix: | |
block: | |
- 740000 | |
- 741000 | |
- 742000 | |
- 743000 | |
- 744000 | |
- 745000 | |
- 746000 | |
- 747000 | |
- 748000 | |
- 749000 | |
fail-fast: false | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./starknet-replay | |
steps: | |
# We checkout replay first, as it's the main repository for this workflow | |
- name: Checkout Replay | |
uses: actions/checkout@v4 | |
with: | |
repository: lambdaclass/starknet-replay | |
path: starknet-replay | |
# We need native for building the runtime | |
- name: Checkout Native | |
uses: actions/checkout@v4 | |
with: | |
path: cairo_native | |
# Install dependencies | |
- uses: ./cairo_native/.github/actions/install-linux-deps | |
- name: Setup rust env | |
uses: dtolnay/[email protected] | |
- name: Retreive cached dependecies | |
uses: Swatinem/rust-cache@v2 | |
- name: Build Cairo Native Runtime Library | |
shell: bash | |
run: | | |
cd ../cairo_native | |
make runtime | |
echo "CAIRO_NATIVE_RUNTIME_LIBRARY=$(pwd)/libcairo_native_runtime.a" > $GITHUB_ENV | |
- name: Patch dependencies | |
run: | | |
# Patches native dependency to local path, to use current cairo native version | |
DEPENDENCY="cairo-native" | |
NEW_PATH="../cairo_native" | |
sed -Ei "s#^($DEPENDENCY *=).*#\1 { path = '$NEW_PATH' }#" Cargo.toml | |
grep $DEPENDENCY Cargo.toml | |
# Patches sequencer dependency to specified rev | |
GIT="https://github.com/lambdaclass/sequencer" | |
NEW_REV="$SEQUENCER_REV" | |
sed -Ei "s#(\"$GIT\" *, *rev *= *\").?*(\".*)#\1$NEW_REV\2#" Cargo.toml | |
grep $GIT Cargo.toml | |
- name: Run with Native | |
run: | | |
BLOCK_START=${{ matrix.block }} | |
BLOCK_END=$(($BLOCK_START + $RANGE_SIZE - 1)) | |
cargo run --release --features state_dump block-range $BLOCK_START $BLOCK_END mainnet | |
continue-on-error: true | |
- name: Run with VM | |
run: | | |
BLOCK_START=${{ matrix.block }} | |
BLOCK_END=$(($BLOCK_START + $RANGE_SIZE - 1)) | |
cargo run --release --features state_dump,only_cairo_vm block-range $BLOCK_START $BLOCK_END mainnet | |
continue-on-error: true | |
- name: Compare states | |
run: ../cairo_native/scripts/cmp_state_dumps.sh |