Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/sour-pumpkins-talk.md
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
8 changes: 7 additions & 1 deletion chain/solana/provider/ctf_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,14 @@ func (p *CTFChainProvider) startContainer(
ports := freeport.GetN(p.t, 2)

image := ""
// workaround on linux to load a separate image
if runtime.GOOS == "linux" {
image = "solanalabs/solana:v1.18.26" // workaround on linux to load a separate image
switch runtime.GOARCH {
case "amd64":
image = "solanalabs/solana:v1.18.26"
case "arm64":
image = "public.ecr.aws/w0i8p0z9/solana-validator:main-1dcdbc4"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above

}
}

input := &blockchain.Input{
Expand Down
8 changes: 7 additions & 1 deletion chain/solana/provider/rpcclient/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey just to confirm are we owning this public ECR repo?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The 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{
Expand Down
Loading