Skip to content

Commit

Permalink
[CI troubleshoot Windows]
Browse files Browse the repository at this point in the history
  • Loading branch information
kinke committed Aug 4, 2023
1 parent 60ef460 commit 4790f26
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ jobs:
run: |
choco install openssl --no-progress || exit /b
mkdir extern_deps || exit /b
copy "%PROGRAMFILES%\OpenSSL-Win64\lib\VC\libssl64MT.lib" extern_deps\libssl.lib || exit /b
copy "%PROGRAMFILES%\OpenSSL-Win64\lib\VC\libcrypto64MT.lib" extern_deps\libcrypto.lib || exit /b
dir "%PROGRAMFILES%\OpenSSL"
dir "%PROGRAMFILES%\OpenSSL\lib"
dir "%PROGRAMFILES%\OpenSSL\lib\VC"
copy "%PROGRAMFILES%\OpenSSL\lib\VC\libssl64MT.lib" extern_deps\libssl.lib || exit /b
copy "%PROGRAMFILES%\OpenSSL\lib\VC\libcrypto64MT.lib" extern_deps\libcrypto.lib || exit /b
echo KAL_EXT_LIB_WIN64=%CD%\extern_deps>> %GITHUB_ENV%
- name: dub build
Expand Down

0 comments on commit 4790f26

Please sign in to comment.