cli: Install Solana from anza.xyz domain in Docker verifiable builds (#3271)

This commit is contained in:
acheron 2024-09-24 00:58:56 +02:00 committed by GitHub
parent dbb0e88cb2
commit 385c36cd7f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -97,6 +97,7 @@ The minor version will be incremented upon a breaking change and the patch versi
- lang: Remove `EventIndex` ([#3244](https://github.com/coral-xyz/anchor/pull/3244)).
- spl: Remove `dex` feature ([#3257](https://github.com/coral-xyz/anchor/pull/3257)).
- client, lang, spl: Upgrade Solana to v2 and SPL to the latest ([#3219](https://github.com/coral-xyz/anchor/pull/3219)).
- cli: Install Solana from anza.xyz domain in Docker verifiable builds ([#3271](https://github.com/coral-xyz/anchor/pull/3271)).
## [0.30.1] - 2024-06-20

View File

@ -1728,7 +1728,7 @@ fn docker_prep(container_name: &str, build_config: &BuildConfig) -> Result<()> {
&[
"curl",
"-sSfL",
&format!("https://release.solana.com/v{solana_version}/install",),
&format!("https://release.anza.xyz/v{solana_version}/install",),
"-o",
"solana_installer.sh",
],