chore(integration-tests): bump CTF to fix Aptos cwd tar race#436
Merged
chore(integration-tests): bump CTF to fix Aptos cwd tar race#436
Conversation
Pulls in smartcontractkit/chainlink-testing-framework#2519 — the Sui/Aptos CTF provider cwd tar-race fix. The Aptos provider in chainlink-deployments-framework builds blockchain.Input with no ContractsDir, causing upstream newAptos to filepath.Abs("") = cwd and tar-stream the live test working directory. Growing log files trip archive/tar: write too long intermittently. Module bump only — no source changes.
a1bb0dd to
20382fa
Compare
cawthorne
approved these changes
Apr 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bumps
github.com/smartcontractkit/chainlink-testing-framework/frameworkinintegration-tests/go.modtov0.15.16to pull in the upstream fix for anarchive/tar: write too longflake in the Aptos CTF container-start path.Upstream PR: smartcontractkit/chainlink-testing-framework#2519 (merged as
v0.15.16).Root Cause
chainlink-deployments-framework/chain/aptos/provider/ctf_provider.go:160builds ablockchain.Input{Type: TypeAptos, ...}with noContractsDir. CTF'snewAptosunconditionally calledfilepath.Abs(in.ContractsDir)— Go stdlib resolvesfilepath.Abs("")to the process cwd. That path was attached as atestcontainers.ContainerFile, tarring the host test working directory. Files in that dir being written concurrently (logs, db dumps) triparchive/tar.ErrWriteTooLongbetweenos.Stat(header size) andio.Copy(body).Same bug shape as the Sui flake; fix is symmetric.
Fix
Module bump only — no source changes. Pins framework to
v0.15.16(stable tag), which gates theFiles:entry onin.ContractsDir != ""in bothsui.goandaptos.go.Safety
ContractsDir: identical behaviour.integration-tests/ccip/ccip_deployment_test.go):req.Filesnow nil. testcontainers-go's copy-to-container hook iteratesrange files— zero iterations on nil, no-op.Test plan
go get+go mod tidyclean