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 c94846a commit dc72707Copy full SHA for dc72707
framework/components/blockchain/solana.go
@@ -31,7 +31,11 @@ var idJSONRaw = `
31
`
32
33
func defaultSolana(in *Input) {
34
- if in.Image == "" {
+ ci := os.Getenv("CI") == "true"
35
+ if in.Image == "" && !ci {
36
+ in.Image = "f4hrenh9it/solana"
37
+ }
38
+ if in.Image == "" && ci {
39
in.Image = "anzaxyz/agave:v2.1.13"
40
}
41
if in.Port == "" {
0 commit comments