From 662a4eb85d68fe176477bf20ad5dc58d06c921d9 Mon Sep 17 00:00:00 2001 From: Simone Date: Sun, 17 May 2026 15:55:52 +0200 Subject: [PATCH] docs(phaseA): fix Windows smoke artifact-source to match build cmd MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Windows manual smoke used --guest-artifact-source 'C:\ci\workspace\artifact.txt' (a stale absolute path that does not exist in the build flow; workdir is C:\CI\build). The build command writes artifact.txt into the workdir, so the source must be relative 'artifact.txt' — matching the Linux example. Co-Authored-By: Claude Opus 4.7 --- plans/PhaseA-user-checklist.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plans/PhaseA-user-checklist.md b/plans/PhaseA-user-checklist.md index f82fc6b..5fedaca 100644 --- a/plans/PhaseA-user-checklist.md +++ b/plans/PhaseA-user-checklist.md @@ -178,7 +178,7 @@ Valida A3+A4 insieme: clone → wait → build → collect → cleanup. --repo-url 'http://10.10.20.11:3100/Simone/your-repo.git' ` --branch main ` --build-command 'echo hello > artifact.txt' ` - --guest-artifact-source 'C:\ci\workspace\artifact.txt' ` + --guest-artifact-source 'artifact.txt' ` --artifact-base-dir 'F:\CI\Artifacts\smoke-job-win' ```