mirror of
https://github.com/curl/curl.git
synced 2025-01-24 14:15:18 +08:00
GHA/windows: remove vcpkg bin path in MSVC jobs
- the path is wrong, because we compile on debug, and we are using the release bin path. - the path is not needed, cmake curl copy the needed dlls to the compilation cmake folder where the curl exe is found. Closes #14329
This commit is contained in:
parent
0d12528729
commit
a79dc7b601
4
.github/workflows/windows.yml
vendored
4
.github/workflows/windows.yml
vendored
@ -607,7 +607,7 @@ jobs:
|
||||
run: |
|
||||
find . -name '*.exe' -o -name '*.dll' | grep -v '/examples/'
|
||||
if [ '${{ matrix.plat }}' != 'uwp' ]; then
|
||||
PATH="$PWD/bld/lib:$VCPKG_INSTALLATION_ROOT/installed/${{ matrix.arch }}-${{ matrix.plat }}/bin:$PATH"
|
||||
PATH="$PWD/bld/lib:$PATH"
|
||||
bld/src/curl.exe --disable --version
|
||||
fi
|
||||
|
||||
@ -629,5 +629,5 @@ jobs:
|
||||
elif [[ '${{ matrix.config }}' = *'-DUSE_LIBIDN2=ON'* ]]; then
|
||||
TFLAGS+=' ~165 ~1448 ~2046 ~2047'
|
||||
fi
|
||||
PATH="$PWD/bld/lib:$VCPKG_INSTALLATION_ROOT/installed/${{ matrix.arch }}-${{ matrix.plat }}/bin:$PATH"
|
||||
PATH="$PWD/bld/lib:$PATH"
|
||||
cmake --build bld --config '${{ matrix.type }}' --target test-ci
|
||||
|
Loading…
Reference in New Issue
Block a user