Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
9 changes: 8 additions & 1 deletion .github/workflows/anchor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,14 @@ jobs:
- uses: heyAyushh/setup-anchor@v4.999
with:
anchor-version: 1.0.0
solana-cli-version: stable
# Pinned to 3.1.10 (not `stable`) because heyAyushh/setup-anchor's
# `stable` resolver intermittently returns an empty version string,
# which makes the action curl https://release.anza.xyz/v/install and
# 404. 3.1.10 is the version recommended by Anchor 1.0.0's release
# notes and pinned by Anchor's own CI in 1.0.0-rc.5+. Bump in lockstep
# with anchor-version above. See upstream issue tracking the brittle
# `stable` behaviour.
solana-cli-version: 3.1.10
- name: Install Surfpool
run: curl -sL https://run.surfpool.run/ | bash
- name: Display Versions
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,16 @@ jobs:
- name: Setup Solana Stable
uses: heyAyushh/setup-solana@v5.9
with:
solana-cli-version: stable
# Pinned to 3.1.10 (not `stable`) because heyAyushh/setup-solana's
# `stable` resolver intermittently returns an empty version string,
# which makes the action curl https://release.anza.xyz/v/install and
# 404. 3.1.10 is the version recommended by Anchor 1.0.0's release
# notes; we use it here too to keep the matrix consistent across
# frameworks. The `beta` step below intentionally stays floating —
# it's the channel-tracking job and is already marked
# continue-on-error. See upstream issue tracking the brittle `stable`
# behaviour.
solana-cli-version: 3.1.10
- name: Build and Test with Stable
run: |
source build_and_test.sh
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/pinocchio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,16 @@ jobs:
- name: Setup Solana Stable
uses: heyAyushh/setup-solana@v5.9
with:
solana-cli-version: stable
# Pinned to 3.1.10 (not `stable`) because heyAyushh/setup-solana's
# `stable` resolver intermittently returns an empty version string,
# which makes the action curl https://release.anza.xyz/v/install and
# 404. 3.1.10 is the version recommended by Anchor 1.0.0's release
# notes; we use it here too to keep the matrix consistent across
# frameworks. The `beta` step below intentionally stays floating —
# it's the channel-tracking job and is already marked
# continue-on-error. See upstream issue tracking the brittle `stable`
# behaviour.
solana-cli-version: 3.1.10
- name: Build and Test with Stable
run: |
source build_and_test.sh
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/quasar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,13 @@ jobs:
- name: Setup Solana Stable
uses: heyAyushh/setup-solana@v5.9
with:
solana-cli-version: stable
# Pinned to 3.1.10 (not `stable`) because heyAyushh/setup-solana's
# `stable` resolver intermittently returns an empty version string,
# which makes the action curl https://release.anza.xyz/v/install and
# 404. 3.1.10 is the version recommended by Anchor 1.0.0's release
# notes; using it here keeps the matrix consistent across frameworks.
# See upstream issue tracking the brittle `stable` behaviour.
solana-cli-version: 3.1.10
- name: Install Quasar CLI
# Pinned to quasar rev 3d6fb0d8 (the HEAD this migration was written
# against, immediately after PRs #195 + #196). The next merged PR
Expand Down
Loading