Skip to content

Commit e1ffa1f

Browse files
committed
.github/workflows/nano-server: test ucrt64/bin instead of mingw64/bin
The nano-server smoke test mounts the SDK's per-arch `bin/` into a container and runs `git.exe` from there. With the SDK now flipping over to UCRT64, the path under the working tree is `ucrt64/bin/` rather than `mingw64/bin/`. The check on `main` (and on every other ucrt64-branch push so far) succeeded only because the mingw64 tree was still present; the latest push removed it and the next nano-server run failed with "bind source path does not exist: ...\mingw64\bin", which this fixes. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent d233fe4 commit e1ffa1f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/nano-server.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# cannot use `git clone` directly, to allow for PR's refs to be fetched
1919
git clone --no-checkout --single-branch -b ${REF#refs/heads/} --filter=blob:none --depth=1 \
2020
https://github.com/${{github.repository}} . &&
21-
git sparse-checkout set .github/workflows mingw64/bin &&
21+
git sparse-checkout set .github/workflows ucrt64/bin &&
2222
git checkout HEAD
2323
- name: pull nanoserver image
2424
shell: bash
@@ -30,6 +30,6 @@ jobs:
3030
docker run \
3131
--user "ContainerAdministrator" \
3232
-v "$WINDBG_DIR:C:/dbg" \
33-
-v "$(cygpath -aw mingw64/bin):C:/test" \
33+
-v "$(cygpath -aw ucrt64/bin):C:/test" \
3434
-v "$(cygpath -aw .github/workflows/nano-server):C:/script" \
3535
$IMAGE pwsh.exe C:/script/run-tests.ps1

0 commit comments

Comments
 (0)