Skip to content

Commit afca1be

Browse files
test(TON): use dev image for ton CTF provider (#256)
The initialize test for TON [started failing today](https://github.com/smartcontractkit/chainlink-deployments-framework/actions/runs/16870505111/job/47784398103?pr=253) even in main branch when it was previously passing, i did some investigation and looks like there was a new "latest" tag image published just recently - https://github.com/neodix42/mylocalton-docker/pkgs/container/mylocalton-docker, this image stops the container from starting up, opted to use `dev` image since that is working. This unblocks all PRs due to the failing test
1 parent 4d57885 commit afca1be

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.changeset/curly-olives-write.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+
use dev tagged image for TON CTF Provider

chain/ton/provider/ctf_provider.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ func (p *CTFChainProvider) startContainer(chainID string) (string, *ton.APIClien
121121
Type: blockchain.TypeTon,
122122
ChainID: chainID,
123123
Port: strconv.Itoa(port),
124+
Image: "ghcr.io/neodix42/mylocalton-docker:dev", // as of 11th Aug 2025, the tag 'latest' image used by default fails to startup. Override it with the 'dev' image
124125
})
125126
if rerr != nil {
126127
// Return the ports to freeport to avoid leaking them during retries

0 commit comments

Comments
 (0)