Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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: 6 additions & 0 deletions .github/workflows/solana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ jobs:
- name: Install just
uses: extractions/setup-just@v2

- name: Install protobuf compiler
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
protoc --version

- name: Build Solana programs
run: just build-solana

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ cache
coverage
node_modules
out
tmp

# files
*.env
Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ serde_with = { version = "3.11", default-features = false }
hex = { version = "0.4", default-features = false }
base64 = { version = "0.22", default-features = false }
prost = { version = "0.13", default-features = false }
prost-build = { version = "0.13", default-features = false }
subtle-encoding = { version = "0.5", default-features = false }
schemars = { version = "0.8", default-features = false }

Expand Down
Loading
Loading