-
Notifications
You must be signed in to change notification settings - Fork 3
Specify solana arm64 image #555
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "chainlink-deployments-framework": minor | ||
| --- | ||
|
|
||
| Specified Solana image to enable arm64 runtime architecture |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -84,8 +84,14 @@ func startSolanaContainer( | |
| ports := freeport.GetN(t, 2) | ||
|
|
||
| image := "" | ||
| // TODO: workaround on linux | ||
| if runtime.GOOS == "linux" { | ||
| image = "solanalabs/solana:v1.18.26" // TODO: workaround on linux | ||
| switch runtime.GOARCH { | ||
| case "amd64": | ||
| image = "solanalabs/solana:v1.18.26" | ||
| case "arm64": | ||
| image = "public.ecr.aws/w0i8p0z9/solana-validator:main-1dcdbc4" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hey just to confirm are we owning this public ECR repo?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ya that's correct. This is the thread where DevEx asked us to use this one in particular: https://chainlink-core.slack.com/archives/C038Q8K1HTR/p1761931945184759?thread_ts=1761928192.388249&cid=C038Q8K1HTR |
||
| } | ||
| } | ||
|
|
||
| bcInput := &blockchain.Input{ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above