Str 387 #2095
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
| --- | |
| name: Yellowstone GRPC Test | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - 'master' | |
| - 'v1.16' | |
| - 'v1.17' | |
| - 'v1.18' | |
| - 'v2.0' | |
| - 'v2.1' | |
| - 'v2.2' | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04] | |
| runs-on: ["${{ matrix.os }}"] | |
| steps: | |
| - name: baseline | |
| run: | | |
| free -h | |
| df -h | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Set rust version | |
| run: | | |
| RUST_VERSION="$(grep -oP 'channel = "\K\d\.\d+\.\d+(?=")' rust-toolchain.toml)" | |
| echo "RUST_STABLE=$RUST_VERSION" | tee -a $GITHUB_ENV | |
| - name: Set env vars | |
| run: | | |
| source ci/env.sh | |
| echo "GEYSER_PLUGIN_NAME=$plugin_name" | tee -a $GITHUB_ENV | |
| echo "GEYSER_PLUGIN_LIB=lib${plugin_lib_name}" | tee -a $GITHUB_ENV | |
| - name: Free up disk space | |
| run: | | |
| sudo rm -rf /usr/share/dotnet | |
| sudo rm -rf /opt/ghc | |
| sudo rm -rf /usr/local/lib/android | |
| docker system prune --all --force | |
| - name: pre rust | |
| run: | | |
| free -h | |
| df -h | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: nightly | |
| components: rustfmt | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| targets: wasm32-unknown-unknown | |
| toolchain: ${{ env.RUST_STABLE }} | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libsasl2-dev protobuf-compiler | |
| - name: post install | |
| run: | | |
| free -h | |
| df -h | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/bin/ | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| ./target | |
| key: v0001-${{ matrix.os }}-rust-${{ hashFiles('rust-toolchain.toml') }}-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: | | |
| v0001-${{ matrix.os }}-rust-${{ hashFiles('rust-toolchain.toml') }} | |
| - name: cargo tree | |
| run: | | |
| cargo tree | |
| git diff Cargo.lock | |
| git checkout Cargo.lock | |
| cargo tree --frozen | |
| - name: cargo fmt | |
| run: cargo +nightly fmt --all -- --check | |
| - name: cargo clippy | |
| run: cargo clippy --workspace --all-targets | |
| - name: check features in `client` | |
| run: cargo check -p yellowstone-grpc-client --all-targets | |
| - name: check features in `client-simple` | |
| run: cargo check -p yellowstone-grpc-client-simple --all-targets | |
| - name: check features in `geyser` | |
| run: cargo check -p yellowstone-grpc-geyser --all-targets | |
| - name: check features in `proto` | |
| run: cargo check -p yellowstone-grpc-proto --all-targets | |
| - name: check all features in `proto` | |
| run: cargo check -p yellowstone-grpc-proto --all-targets --all-features | |
| - name: cargo test | |
| run: cargo test --all-features | |
| - name: Build | |
| run: ./ci/cargo-build-test.sh |