We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d87b71e commit 176abedCopy full SHA for 176abed
1 file changed
golem-skills/tests/harness/src/executor.ts
@@ -947,6 +947,10 @@ export class ScenarioExecutor {
947
// Deploy implies build — run build first if not already run
948
if (!step.verify?.build) {
949
const buildDir = await this.findGolemProjectDir();
950
+ // Clean golem-temp to force a fresh build — the agent may have built
951
+ // with different SDK paths, leaving stale cached artifacts
952
+ const golemTempDir = path.join(buildDir, "golem-temp");
953
+ await fs.rm(golemTempDir, { recursive: true, force: true });
954
console.log(
955
`Step ${step.id ?? "(unnamed)"}: running implicit golem build before deploy in ${buildDir}`,
956
);
0 commit comments