From 89101fabf88644a0717886985712e59f6def2275 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 24 Mar 2025 15:22:52 +0100 Subject: [PATCH] GHA/windows: dl-mingw `PATH` follow-up Follow-up to 468bfc26183cc4e65b2494acf82d256571cb8178 #16813 Closes #16817 --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index aff5c3b306..b2dbd60faf 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -524,7 +524,7 @@ jobs: if: ${{ matrix.tflags != 'skipall' && matrix.tflags != 'skiprun' }} timeout-minutes: 10 run: | - PATH="$(cygpath "${USERPROFILE}")/my-cache/${{ matrix.dir }}/bin:$PATH" + PATH="/d/my-cache/${{ matrix.dir }}/bin:$PATH" export TFLAGS='-j8 ${{ matrix.tflags }}' TFLAGS+=' !498' # 'Reject too large HTTP response headers on endless redirects' HTTP, HTTP GET (runtests detecting result code 2009 instead of 56 returned by curl) if [ -x "$(cygpath "${SYSTEMROOT}/System32/curl.exe")" ]; then @@ -536,7 +536,7 @@ jobs: - name: 'build examples' timeout-minutes: 5 run: | - PATH="$(cygpath "${USERPROFILE}")/my-cache/${{ matrix.dir }}/bin:$PATH" + PATH="/d/my-cache/${{ matrix.dir }}/bin:$PATH" cmake --build bld --target curl-examples linux-cross-mingw-w64: