-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(blockifier_reexecution): add blockifier reexecution test to ci
- Loading branch information
1 parent
0506033
commit d5aae46
Showing
3 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Blockifier-Reexecution-CI | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- auto_merge_enabled | ||
- edited | ||
paths: | ||
# Other than code-related changes, all changes related to the blockifier should trigger the build. | ||
- '.github/workflows/blockifier_ci.yml' | ||
- '.github/workflows/blockifier_reexecution_ci.yml' | ||
- '.github/workflows/upload_artifacts_workflow.yml' | ||
- 'build_native_in_docker.sh' | ||
- 'Cargo.lock' | ||
- 'Cargo.toml' | ||
- 'crates/blockifier/**' | ||
- 'crates/blockifier_reexecution/**' | ||
- 'crates/native_blockifier/**' | ||
- 'scripts/build_native_blockifier.sh' | ||
- 'scripts/dependencies.sh' | ||
- 'scripts/install_build_tools.sh' | ||
- 'scripts/sequencer-ci.Dockerfile' | ||
|
||
# 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: | ||
blockifier_reexecution: | ||
runs-on: starkware-ubuntu-latest-medium | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/bootstrap | ||
# Download the blockifier re-execution test data. | ||
- uses: 'google-github-actions/setup-gcloud@v2' | ||
- run: echo "REEXECUTION_INPUT_FILES_PREFIX=$(cat ./crates/blockifier_reexecution/resources/offline_reexecution_files_prefix)" >> $GITHUB_ENV | ||
- run: gcloud storage cp -r gs://reexecution_artifacts/$REEXECUTION_INPUT_FILES_PREFIX/resources/* ./crates/blockifier_reexecution/resources/ | ||
# Run blockifier re-execution tests. | ||
- run: cargo test --release -p blockifier_reexecution -- --include-ignored |
1 change: 1 addition & 0 deletions
1
crates/blockifier_reexecution/resources/offline_reexecution_files_prefix
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3f33eebd4 |
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