@odla-ai/harness 0.11.16 → 0.11.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-BOYUPB3P.js → chunk-RDCU4PIP.js} +6 -3
- package/dist/{chunk-BOYUPB3P.js.map → chunk-RDCU4PIP.js.map} +1 -1
- package/dist/code-runtime-cli.cjs +2 -2
- package/dist/code-runtime-cli.cjs.map +1 -1
- package/dist/code-runtime-cli.js +1 -1
- package/dist/node.cjs +8 -2
- package/dist/node.cjs.map +1 -1
- package/dist/node.d.cts +11 -1
- package/dist/node.d.ts +11 -1
- package/dist/node.js +7 -1
- package/dist/node.js.map +1 -1
- package/package.json +1 -1
package/dist/code-runtime-cli.js
CHANGED
package/dist/node.cjs
CHANGED
|
@@ -28,6 +28,7 @@ __export(node_exports, {
|
|
|
28
28
|
DEPENDENCY_INSTALL_TIMEOUT_MS: () => DEPENDENCY_INSTALL_TIMEOUT_MS,
|
|
29
29
|
DecompositionError: () => DecompositionError,
|
|
30
30
|
MAX_MEMORY_BODY: () => MAX_MEMORY_BODY,
|
|
31
|
+
MAX_TAP_FAILURES: () => MAX_TAP_FAILURES,
|
|
31
32
|
MEASURED_PREMIUM: () => MEASURED_PREMIUM,
|
|
32
33
|
PROOF_RECIPE_PREFIX: () => PROOF_RECIPE_PREFIX,
|
|
33
34
|
REPOSITORY_RECIPES_FILE: () => REPOSITORY_RECIPES_FILE,
|
|
@@ -60,7 +61,9 @@ __export(node_exports, {
|
|
|
60
61
|
describeCodeRecipes: () => describeCodeRecipes,
|
|
61
62
|
describeGateFailure: () => describeGateFailure,
|
|
62
63
|
describePatchFailure: () => describePatchFailure,
|
|
64
|
+
describeTapFailures: () => describeTapFailures,
|
|
63
65
|
digestStagedWorkspace: () => digestStagedWorkspace,
|
|
66
|
+
extractTapFailingTests: () => extractTapFailingTests,
|
|
64
67
|
feedbackIsActionable: () => feedbackIsActionable,
|
|
65
68
|
hasContextFreeHunk: () => hasContextFreeHunk,
|
|
66
69
|
hazardFromAttempt: () => hazardFromAttempt,
|
|
@@ -2268,8 +2271,8 @@ function describeGateFailure(evidence) {
|
|
|
2268
2271
|
const output = `${log?.stdout ?? ""}
|
|
2269
2272
|
${log?.stderr ?? ""}`.trim();
|
|
2270
2273
|
const named = describeTapFailures(output);
|
|
2271
|
-
return `${
|
|
2272
|
-
|
|
2274
|
+
return `${named ? `${named}
|
|
2275
|
+
` : ""}${recipe2.recipeId}=${recipe2.status}${output ? `
|
|
2273
2276
|
${gateOutput(output)}` : ""}`;
|
|
2274
2277
|
}).join("\n\n");
|
|
2275
2278
|
return `Clean verification failed. Fix this and checkpoint again:
|
|
@@ -5648,6 +5651,7 @@ async function hostBuildProducts(repoRoot) {
|
|
|
5648
5651
|
DEPENDENCY_INSTALL_TIMEOUT_MS,
|
|
5649
5652
|
DecompositionError,
|
|
5650
5653
|
MAX_MEMORY_BODY,
|
|
5654
|
+
MAX_TAP_FAILURES,
|
|
5651
5655
|
MEASURED_PREMIUM,
|
|
5652
5656
|
PROOF_RECIPE_PREFIX,
|
|
5653
5657
|
REPOSITORY_RECIPES_FILE,
|
|
@@ -5680,7 +5684,9 @@ async function hostBuildProducts(repoRoot) {
|
|
|
5680
5684
|
describeCodeRecipes,
|
|
5681
5685
|
describeGateFailure,
|
|
5682
5686
|
describePatchFailure,
|
|
5687
|
+
describeTapFailures,
|
|
5683
5688
|
digestStagedWorkspace,
|
|
5689
|
+
extractTapFailingTests,
|
|
5684
5690
|
feedbackIsActionable,
|
|
5685
5691
|
hasContextFreeHunk,
|
|
5686
5692
|
hazardFromAttempt,
|