Replace Replay Payload RocksDB With Segmented Append-Only Storage #677
Workflow file for this run
This file contains hidden or 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
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - agave-v* | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-22.04 | |
| - ubuntu-24.04 | |
| runs-on: ["${{ matrix.os }}"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install dependencies | |
| run: | | |
| sudo apt-get update -y | |
| sudo apt-get install libudev-dev -y | |
| - uses: fanatid/rust-github-ci-prepare@master | |
| with: | |
| cache-version: v0007 | |
| - name: cargo deny check advisories | |
| uses: EmbarkStudios/cargo-deny-action@v2 | |
| with: | |
| command: check advisories | |
| - name: run clippy | |
| run: cargo clippy --workspace --all-targets -- -Dwarnings | |
| - name: run clippy in plugin-fuzz | |
| run: cd plugin-agave/fuzz && cargo clippy --workspace --all-targets -- -Dwarnings | |
| - name: check features in `richat-cli` | |
| run: cargo check -p richat-cli --all-targets | |
| - name: check features in `richat-client` | |
| run: cargo check -p richat-client --all-targets | |
| - name: check features in `richat-filter` | |
| run: cargo check -p richat-filter --all-targets | |
| - name: check features in `richat-plugin-agave` | |
| run: cargo check -p richat-plugin-agave --all-targets --no-default-features | |
| - name: check features in `richat-plugin-agave` | |
| run: cargo check -p richat-plugin-agave --all-targets --no-default-features --features="plugin" | |
| - name: check features in `richat-plugin-agave` with all features | |
| run: cargo check -p richat-plugin-agave --all-targets --all-features | |
| - name: check features in `richat` | |
| run: cargo check -p richat --all-targets | |
| - name: check features in `richat-shared` | |
| run: cargo check -p richat-shared --all-targets | |
| - name: check features in `richat-shared` | |
| run: cargo check -p richat-shared --all-targets --no-default-features --features="config" | |
| - name: check features in `richat-shared` | |
| run: cargo check -p richat-shared --all-targets --no-default-features --features="five8" | |
| - name: check features in `richat-shared` | |
| run: cargo check -p richat-shared --all-targets --no-default-features --features="jsonrpc" | |
| - name: check features in `richat-shared` | |
| run: cargo check -p richat-shared --all-targets --no-default-features --features="tracing" | |
| - name: check features in `richat-shared` | |
| run: cargo check -p richat-shared --all-targets --no-default-features --features="transports" | |
| - name: check features in `richat-shared` | |
| run: cargo check -p richat-shared --all-targets --no-default-features --features="version" | |
| - name: run test | |
| run: cargo test --all-targets |