do not install handle64 on msys builds

This commit is contained in:
Viktor Szakats 2025-02-25 18:09:02 +01:00
parent a1d00da81e
commit e79b366c73
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -328,7 +328,9 @@ jobs:
timeout-minutes: 5
run: |
/c/ProgramData/chocolatey/choco.exe install --yes --no-progress --limit-output --timeout 180 --force stunnel || true
curl --disable --fail --silent --show-error --connect-timeout 15 --max-time 60 --retry 3 https://live.sysinternals.com/handle64.exe --output /bin/handle64.exe
if [ '${{ matrix.sys }}' != 'msys' ]; then
curl --disable --fail --silent --show-error --connect-timeout 15 --max-time 60 --retry 3 https://live.sysinternals.com/handle64.exe --output /bin/handle64.exe
fi
- name: 'run tests'
if: ${{ matrix.tflags != 'skipall' && matrix.tflags != 'skiprun' }}