Commit dda3119
ci(windows): make VS2026 configure idempotent for build-cache hits
The VS2026 configure step used "mkdir -p" under PowerShell, where mkdir maps to
New-Item, which errors when the directory already exists. On a build-cache hit
the restored build/<config> directory is present, so configure failed
intermittently (cache miss passed, cache hit failed). Use
New-Item -ItemType Directory -Force, matching the VS2022 job.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent 7f30f19 commit dda3119
1 file changed
Lines changed: 4 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
314 | 314 | | |
315 | 315 | | |
316 | 316 | | |
317 | | - | |
318 | | - | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
319 | 321 | | |
320 | 322 | | |
321 | 323 | | |
| |||
0 commit comments