Skip to content

Commit 2d45dcc

Browse files
fix: set sui default image to mysten/sui-tools:devnet-v1.61.0 (#596)
The new image mysten/sui-tools:devnet is broken, to unblock the pipeline due to the test failing , i am setting it to the last working version
1 parent 3a17c98 commit 2d45dcc

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.changeset/eighty-cooks-bathe.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"chainlink-deployments-framework": patch
3+
---
4+
5+
fix: set sui default image to mysten/sui-tools:devnet-v1.61.0

chain/sui/provider/ctf_provider.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ func (p *CTFChainProvider) startContainer(
174174
port := ports[0]
175175
faucetPort := ports[1]
176176

177-
image := ""
178-
platform := ""
177+
var image string
178+
var platform string
179179

180180
// by default, if image and platform are empty, they are set to amd64 by CTF
181181
// to support running locally on macos arm64, we set the image and platform to ci-arm64 and linux/arm64 respectively
@@ -184,6 +184,8 @@ func (p *CTFChainProvider) startContainer(
184184
} else {
185185
if runtime.GOARCH == "arm64" {
186186
image = "mysten/sui-tools:ci-arm64"
187+
} else {
188+
image = "mysten/sui-tools:devnet-v1.61.0"
187189
}
188190
}
189191

0 commit comments

Comments
 (0)