We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 010b93f commit 80b3156Copy full SHA for 80b3156
.github/workflows/ci-message-buffer.yml
@@ -29,7 +29,8 @@ jobs:
29
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
30
- name: Install Anchor
31
run: |
32
- cargo install --git https://github.com/coral-xyz/anchor --tag v0.27.0 anchor-cli --locked
+ # 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
34
- name: Install g++ 12
35
36
sudo apt-get install g++-12
@@ -61,5 +62,4 @@ jobs:
61
62
run: cargo fmt --all -- --check
63
if: success() || failure()
64
- name: Cargo clippy
- run: CXX=/usr/bin/g++-12 cargo clippy --all-targets -- --deny warnings
65
- if: success() || failure()
+ run: cargo clippy --all-targets -- --deny warnings
0 commit comments