From 78829294f25cb0a8b83a4b3f8da90cd29649888c Mon Sep 17 00:00:00 2001 From: FrancoGiachetta Date: Mon, 23 Jun 2025 09:28:12 -0300 Subject: [PATCH 1/3] fix ci --- .github/workflows/starknet-blocks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/starknet-blocks.yml b/.github/workflows/starknet-blocks.yml index b89f5bd53..df95492be 100644 --- a/.github/workflows/starknet-blocks.yml +++ b/.github/workflows/starknet-blocks.yml @@ -89,12 +89,12 @@ jobs: - name: Run with Native if: ${{ matrix.runner == 'native' }} run: | - cargo run --features state_dump block mainnet ${{ matrix.block }} + cargo run --release --bin replay --features state_dump block mainnet ${{ matrix.block }} - name: Run with VM if: ${{ matrix.runner == 'vm' }} run: | - cargo run --features "state_dump,only_cairo_vm" block mainnet ${{ matrix.block }} + cargo run --release --bin replay --features "state_dump,only_cairo_vm" block mainnet ${{ matrix.block }} - name: Upload dumps uses: actions/upload-artifact@v4 From b54592b683fc9129e8853fb1149a78bea7f250d7 Mon Sep 17 00:00:00 2001 From: FrancoGiachetta Date: Mon, 23 Jun 2025 09:31:59 -0300 Subject: [PATCH 2/3] fix daily blocks ci --- .github/workflows/daily.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 0ceea0b10..817c161b1 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -148,13 +148,13 @@ jobs: 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 + cargo run --release --bin replay --features state_dump block-range $BLOCK_START $BLOCK_END mainnet - name: Run with VM if: ${{ matrix.runner == '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 + cargo run --release --bin replay --features state_dump,only_cairo_vm block-range $BLOCK_START $BLOCK_END mainnet # We always upload the dump, even if the job fails - name: Upload dumps From 4478643c0e4f4eb02fda435a7fa66a2da22f25bf Mon Sep 17 00:00:00 2001 From: FrancoGiachetta Date: Mon, 23 Jun 2025 09:35:47 -0300 Subject: [PATCH 3/3] update starknet-replay and sequencer in staknet-blocks workflow --- .github/workflows/starknet-blocks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/starknet-blocks.yml b/.github/workflows/starknet-blocks.yml index df95492be..63a4b45df 100644 --- a/.github/workflows/starknet-blocks.yml +++ b/.github/workflows/starknet-blocks.yml @@ -32,7 +32,7 @@ jobs: with: repository: lambdaclass/starknet-replay path: starknet-replay - ref: d36491aa5fca3f48b4d7fb25eba599603ff48225 + ref: 95c7e85f65acbf536462ffb538b866ddafb7ce39 # We need native to use the linux deps ci action - name: Checkout Native uses: actions/checkout@v4 @@ -43,7 +43,7 @@ jobs: with: repository: lambdaclass/sequencer path: sequencer - ref: 14be65ca995ac702bad26ac20f2a522d9515f70a + ref: 7aaf0e38c2c80276b8121bca5df8e8389bcdc2f6 - name: Cache RPC Calls uses: actions/cache@v4.2.0 with: