Skip to content

Commit e0fd263

Browse files
committed
fix(ci): use an older solana version
It seems that Solana CLI is locks to an older version of rust.
1 parent 8cddc15 commit e0fd263

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/pyth-sdk-solana.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,13 @@ jobs:
3434
run: sudo apt-get update && sudo apt-get install libudev-dev
3535
- name: Install Solana Binaries
3636
run: |
37-
# Installing 1.17.x cli tools to have sbf instead of bpf. bpf does not work anymore.
38-
sh -c "$(curl -sSfL https://release.solana.com/v1.18.1/install)"
37+
sh -c "$(curl -sSfL https://release.solana.com/v1.17.22/install)"
3938
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
4039
- name: Build
4140
run: cargo build --verbose
4241
- name: Run tests
4342
run: cargo test --verbose
44-
- name: Build BPF
45-
run: cargo build-bpf --verbose
46-
- name: Run BPF tests
47-
run: cargo test-bpf --verbose
43+
- name: Build SBF
44+
run: cargo build-sbf --verbose
45+
- name: Run SBF tests
46+
run: cargo test-sbf --verbose

0 commit comments

Comments
 (0)