CI/GitHub: Copy possibly other version of openssl dlls required for libmysql.dll

This commit is contained in:
Shauren
2026-04-17 19:27:49 +02:00
parent 71e48b58a0
commit e5a3693f78
+2
View File
@@ -84,6 +84,8 @@ jobs:
run: |
cd ${{ steps.strings.outputs.build-output-dir }}/bin/${{ env.CMAKE_BUILD_TYPE }}
copy "${{ env.MYSQL_ROOT_DIR }}/lib/libmysql.dll" libmysql.dll
# mysql may depend on a different version of openssl so copy its dlls first (override later with openssl's own if same version)
Copy-Item -Path "${{ env.MYSQL_ROOT_DIR }}/bin/*" -Include libcrypto*,libssl* -Destination .
Copy-Item -Path "${{ env.OPENSSL_ROOT_DIR }}/bin/*" -Include libcrypto*,libssl*,legacy* -Destination .
- name: Check binaries