Browse Source

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

acheron 1 year ago
parent
commit
385c36cd7f
2 changed files with 2 additions and 1 deletions
  1. 1 0
      CHANGELOG.md
  2. 1 1
      cli/src/lib.rs

+ 1 - 0
CHANGELOG.md

@@ -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
 

+ 1 - 1
cli/src/lib.rs

@@ -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",
             ],