Skip to content

Commit

Permalink
fix(ci): solana install step
Browse files Browse the repository at this point in the history
  • Loading branch information
joeymeere committed Jun 23, 2024
1 parent ff37d20 commit fc356d5
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Rust
name: program-build

on:
push:
Expand All @@ -21,9 +21,14 @@ jobs:
with:
toolchain: stable
override: true

- name: Install Solana
run: |
sh -c "$(curl -sSfL https://release.solana.com/1.18.12/install)"
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
- name: Build
- name: Build Program
run: cargo build-bpf --verbose

- name: Run clippy
- name: Run Clippy
run: cargo clippy

0 comments on commit fc356d5

Please sign in to comment.