File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
book/src/framework/components/blockchains
framework/components/blockchain Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 22
33Since ` Solana ` doesn't have official image for ` arm64 ` we built it, images we use are:
44```
5- amd64 solanalabs/solana:v1.18.26 - used in CI
6- arm64 f4hrenh9it/solana:latest - used locally
5+ amd64 solanalabs/solana:v1.18.26
6+ arm64 f4hrenh9it/solana:latest - used locally and in CI
77```
88
99## Configuration
Original file line number Diff line number Diff line change @@ -31,13 +31,10 @@ var idJSONRaw = `
3131`
3232
3333func defaultSolana (in * Input ) {
34- ci := os . Getenv ( "CI" ) == "true"
35- if in .Image == "" && ! ci {
34+ // Use image locally and in CI for arm64
35+ if in .Image == "" {
3636 in .Image = "f4hrenh9it/solana"
3737 }
38- if in .Image == "" && ci {
39- in .Image = "anzaxyz/agave:v2.1.13"
40- }
4138 if in .Port == "" {
4239 in .Port = "8999"
4340 }
You can’t perform that action at this time.
0 commit comments