feat(): index storage scaffolding & rocksdb implementation #111
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
types: [labeled] | |
push: | |
branches: [develop, main] | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
toml: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Install taplo | |
run: cargo install taplo-cli --locked | |
- name: List versions | |
run: | | |
cargo --version | |
taplo --version | |
- name: Run taplo | |
run: taplo format --check --diff | |
- name: Taplo failure info | |
if: failure() | |
run: | | |
echo 'TOML is not formatted correctly' | |
echo 'Please run taplo format' | |
format: | |
runs-on: self-hosted | |
needs: toml | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- name: List version | |
run: | | |
cargo --version | |
cargo fmt --version | |
- name: Cargo format | |
run: cargo fmt --all -- --check | |
- name: Cargo fmt failure info | |
if: failure() | |
run: | | |
echo '.rs files are not formatted correctly' | |
echo 'Please run cargo fmt --all' | |
clippy_build_and_test: | |
runs-on: self-hosted | |
needs: | |
- format | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cargo caching | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-${{ hashFiles('**/Cargo.toml') }} | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: 1.77.0 | |
target: wasm32-unknown-unknown | |
components: clippy rust-src | |
- name: List version | |
run: | | |
rustup show | |
cargo --version | |
cargo clippy --version | |
- name: Build with try-runtime feature | |
run: RUSTFLAGS="-D warnings" cargo build --locked -q --features try-runtime | |
- name: Build node runtime | |
run: RUSTFLAGS="-D warnings" cargo build --locked -q -p polka-storage-runtime | |
- name: Build node with runtime-benchmark feature | |
run: RUSTFLAGS="-D warnings" cargo build --locked -q -p polka-storage-node --features runtime-benchmarks | |
- name: Build in dev mode | |
run: RUSTFLAGS="-D warnings" cargo build --locked -q | |
- name: Cargo clippy | |
run: cargo clippy --locked -q --no-deps -- -D warnings | |
- name: Run tests | |
run: RUSTFLAGS="-D warnings" cargo test --locked -q --workspace | |
- name: Build in release mode | |
# Run only on merge to the protected branches | |
if: | | |
contains(github.ref, 'develop') || | |
contains(github.ref, 'main') | |
run: RUSTFLAGS="-D warnings" cargo build --locked -q --release | |
- name: Failure handling | |
if: failure() | |
run: | | |
echo 'Job clippy_build_and_test failed.' | |
echo 'Please check the logs for more details' |