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

Upgrade relayer to v1.17 solana dependencies + refactor a few pieces #87

Merged
merged 22 commits into from
Jan 4, 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
10 changes: 5 additions & 5 deletions .github/actions/setup-rust/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ runs:

- name: Install cargo dependencies
run: |
rustup install nightly-2023-04-19
rustup component add rustfmt --toolchain nightly-2023-04-19-x86_64-unknown-linux-gnu
rustup component add clippy --toolchain nightly-2023-04-19-x86_64-unknown-linux-gnu
rustup install nightly-2023-10-05
rustup component add rustfmt --toolchain nightly-2023-10-05-x86_64-unknown-linux-gnu
rustup component add clippy --toolchain nightly-2023-10-05-x86_64-unknown-linux-gnu
cargo install cargo-udeps --locked
cargo install cargo-sort
shell: bash
Expand All @@ -63,6 +63,6 @@ runs:
run: |
rustc --version;
cargo --version;
cargo clippy --version;
cargo fmt --version;
cargo +nightly-2023-10-05-x86_64-unknown-linux-gnu clippy --version;
cargo +nightly-2023-10-05-x86_64-unknown-linux-gnu fmt --version;
shell: bash
4 changes: 2 additions & 2 deletions .github/workflows/clean_code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
caller-workflow-name: clippy_and_udeps_check

- name: cargo clippy
run: cargo +nightly-2023-04-19-x86_64-unknown-linux-gnu clippy --all-targets
run: cargo +nightly-2023-10-05-x86_64-unknown-linux-gnu clippy --all-targets

- name: cargo udeps
run: cargo +nightly-2023-04-19-x86_64-unknown-linux-gnu udeps --locked
run: cargo +nightly-2023-10-05-x86_64-unknown-linux-gnu udeps --locked
Loading