geyser: wrap message into Box
in snapshot channel (#418)
#1291
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
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'master' | |
- 'v1.16' | |
- 'v1.17' | |
- 'v1.18' | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04] | |
runs-on: ["${{ matrix.os }}"] | |
steps: | |
- name: Maximize build space | |
uses: easimon/maximize-build-space@v10 | |
with: | |
root-reserve-mb: 4096 | |
remove-dotnet: 'true' | |
remove-android: 'true' | |
remove-haskell: 'true' | |
remove-codeql: 'true' | |
- uses: actions/checkout@v4 | |
- 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: 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 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ env.RUST_STABLE }} | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libsasl2-dev protobuf-compiler | |
- name: cargo tree | |
run: | | |
cargo tree | |
git checkout Cargo.lock | |
cargo tree --frozen | |
- name: cargo fmt | |
run: cargo +nightly fmt --all -- --check | |
- name: cargo deny check advisories | |
uses: EmbarkStudios/cargo-deny-action@v1 | |
with: | |
command: check advisories | |
- name: cargo clippy | |
run: cargo clippy --workspace --all-targets --tests #-- --deny=warnings | |
- name: check features in `client` | |
run: cargo check -p yellowstone-grpc-client --all-targets --tests | |
- name: check features in `client-simple` | |
run: cargo check -p yellowstone-grpc-client-simple --all-targets --tests | |
- name: check features in `geyser` | |
run: cargo check -p yellowstone-grpc-geyser --all-targets --tests | |
- name: check features in `proto` | |
run: cargo check -p yellowstone-grpc-proto --all-targets --tests | |
- name: check features in `tools` | |
run: cargo check -p yellowstone-grpc-tools --all-targets --tests --all-features | |
- name: Build | |
run: ./ci/cargo-build-test.sh |