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

allow client to extend dependencies to solana 2.x + #141

Merged
merged 6 commits into from
Sep 11, 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
6 changes: 3 additions & 3 deletions .github/.env
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
CARGO_TERM_COLOR=always
NODE_VERSION=16.x
PROGRAMS=["token-metadata"]
RUST_VERSION=1.68.0
SOLANA_VERSION=1.16.8
SOLANA_CLI_VERSION=1.14.22
RUST_VERSION=1.76.0
SOLANA_VERSION=2.0.9
SOLANA_CLI_VERSION=1.18.18
PROGRAM_ID=metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s
PROGRAM_DATA=PwDiXFxQsGra4sFFTT8r1QWRMd4vfumiWC1jfWNfdYT
GOVERNANCE_ID=6Vwz7AXYG6V1TUPP3KWYZncMEvUv6iPSFbfHDCLRcjtz
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-rust-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
- name: Load environment variables
run: cat .github/.env >> $GITHUB_ENV

- name: Install Protobuf Compiler
run: sudo apt-get install protobuf-compiler

- name: Install Rust
uses: metaplex-foundation/actions/install-rust@v1
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-rust-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
- name: Load environment variables
run: cat .github/.env >> $GITHUB_ENV

- name: Install Protobuf Compiler
run: sudo apt-get install protobuf-compiler

- name: Install Rust
uses: metaplex-foundation/actions/install-rust@v1
with:
Expand Down
Loading
Loading