Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

trie-geyser: add RPC server to the plugin #385

Merged
merged 4 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Check formatting
run: |
cargo fmt --all --check
( cd solana/trie-geyser && cargo fmt --all --check )
( cd solana/trie-geyser-plugin && cargo fmt --all --check )

- name: Check Clippy (all features)
uses: actions-rs/clippy-check@v1
Expand All @@ -56,12 +56,12 @@ jobs:
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --manifest-path solana/trie-geyser/Cargo.toml -- -D warnings
args: --all-features --manifest-path solana/trie-geyser-plugin/Cargo.toml -- -D warnings

- name: Miri tests
run: |
cargo miri test -- -Z unstable-options --report-time --skip ::anchor
( cd solana/trie-geyser && cargo miri test -- -Z unstable-options --report-time )
( cd solana/trie-geyser-plugin && cargo miri test -- -Z unstable-options --report-time )

anchor-build:
name: Anchor Test
Expand Down Expand Up @@ -158,10 +158,10 @@ jobs:
run: cargo test --all-features

- name: Run trie-geyser tests (default features)
run: cd solana/trie-geyser && cargo test
run: cd solana/trie-geyser-plugin && cargo test

- name: Run trie-geyser tests (no default features)
run: cd solana/trie-geyser && cargo test --no-default-features
run: cd solana/trie-geyser-plugin && cargo test --no-default-features

- name: Run trie-geyser tests (all features)
run: cd solana/trie-geyser && cargo test --all-features
run: cd solana/trie-geyser-plugin && cargo test --all-features
Loading
Loading