GHA/windows: dl-mingw PATH follow-up

Follow-up to 468bfc2618 #16813

Closes #16817
This commit is contained in:
Viktor Szakats 2025-03-24 15:22:52 +01:00
parent 76d7483fe5
commit 89101fabf8
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -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: