Skip to content

Commit 80b3156

Browse files
committed
ci5
1 parent 010b93f commit 80b3156

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci-message-buffer.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
3030
- name: Install Anchor
3131
run: |
32-
cargo install --git https://github.com/coral-xyz/anchor --tag v0.27.0 anchor-cli --locked
32+
# Anchor doesn't build with newer Rust
33+
cargo +1.66.1 install --git https://github.com/coral-xyz/anchor --tag v0.27.0 anchor-cli --locked
3334
- name: Install g++ 12
3435
run: |
3536
sudo apt-get install g++-12
@@ -61,5 +62,4 @@ jobs:
6162
run: cargo fmt --all -- --check
6263
if: success() || failure()
6364
- name: Cargo clippy
64-
run: CXX=/usr/bin/g++-12 cargo clippy --all-targets -- --deny warnings
65-
if: success() || failure()
65+
run: cargo clippy --all-targets -- --deny warnings

0 commit comments

Comments
 (0)