Kkrt native 2.8 #14
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: Blockifier-CI | |
# TODO(Dori, 15/8/2024): Split this job, so the feature-less build doesn't run on every push to main | |
# branches. | |
on: | |
push: | |
branches: | |
- main | |
- main-v[0-9].** | |
tags: | |
- v[0-9].** | |
# TODO(Dori, 1/9/2024): Decide when exactly native-blockifier artifacts will be built. Until | |
# then, keep the 'paths' key empty and build on every push to a release branch / tag. | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- auto_merge_enabled | |
- edited | |
paths: | |
# Other than code-related changes, all changes related to the native-blockifier build-and-push | |
# process should trigger the build (e.g., changes to the Dockerfile, build scripts, etc.). | |
- '.github/workflows/blockifier_ci.yml' | |
- 'build_native_in_docker.sh' | |
- 'Cargo.lock' | |
- 'Cargo.toml' | |
- 'crates/blockifier/**' | |
- 'crates/native_blockifier/**' | |
- 'scripts/build_native_blockifier.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 }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
featureless-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/install_rust | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
prefix-key: "v0-rust-ubuntu-latest" | |
- name: Set up Native Dependencies | |
uses: ./.github/actions/setup-native-deps | |
id: native-deps | |
- run: cargo build -p blockifier | |
- run: cargo test -p blockifier |