mirror of
https://github.com/curl/curl.git
synced 2026-07-26 17:37:16 +03:00
GHA/windows: avoid curl.exe libtool wrapper
Avoid the `curl.exe` wrapper binary created by libtool, and run the real `curl.exe` directly for tests and version information. This solution was used in Azure jobs. I missed it when migrating jobs to GHA. Applies to tests run in the `mingw, AM x86_64 c-ares U` job, which has seen unexplained flakiness. Ref:354afc891d#6049 Follow-up toe53523fef0#14859 Closes #15437
This commit is contained in:
parent
ef7399b8b5
commit
1a2d38c47c
1 changed files with 3 additions and 0 deletions
3
.github/workflows/windows.yml
vendored
3
.github/workflows/windows.yml
vendored
|
|
@ -274,6 +274,9 @@ jobs:
|
|||
if: ${{ matrix.build == 'autotools' }}
|
||||
timeout-minutes: 1
|
||||
run: |
|
||||
# avoid libtool's curl.exe wrapper
|
||||
mv bld/src/.libs/curl.exe bld/src/curl.exe
|
||||
mv bld/lib/.libs/*.dll bld/src || true
|
||||
find . -name '*.exe' -o -name '*.dll'
|
||||
bld/src/curl.exe --disable --version
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue