Skip to content

Commit d146576

Browse files
committed
fix(test-suite): print full version bundle during boot resolve step
The resolve step during normal boot only printed the lock name (e.g. latest-main-73e9e30.json) without the individual component versions. The dry-run path already printed the detailed breakdown. Now both paths print the full version matrix so CI logs always show exactly which image tags were used.
1 parent 81621dd commit d146576

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-suite/fhevm/src/flow/up-flow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1251,7 +1251,7 @@ export const runStep = async (state: State, step: StepName) => {
12511251
await preflight(state, true, state.requiresGitHub ?? true);
12521252
break;
12531253
case "resolve":
1254-
printBundle(state.versions);
1254+
printBundle(state.versions, { detailed: true });
12551255
break;
12561256
case "generate":
12571257
await generateRuntime(state, stackSpecForState(state));

0 commit comments

Comments
 (0)