feat(starknet_state_sync): pass new internal blocks from state sync to p2p sync client #504
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: Sequencer-Integration-Tests-CI-Flow | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- auto_merge_enabled | |
- edited | |
env: | |
SEQUENCER_INTEGRATION_TESTS: 1 | |
RUSTFLAGS: "-D warnings -C link-arg=-fuse-ld=lld" | |
# On PR events, cancel existing CI runs on this same PR for this workflow. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.job }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
build-and-run-run-sequencer-integration-tests: | |
runs-on: starkware-ubuntu-latest-large | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/bootstrap | |
- run: | | |
cargo build --bin starknet_sequencer_node | |
cargo test --test end_to_end_integration_test |