From f1edcd2f995870b89d7742b829d39e36d43b177d Mon Sep 17 00:00:00 2001 From: Steve Bennett Date: Sat, 25 Feb 2023 10:00:17 +1000 Subject: build: appveyor: support different libssl version Use wildcards when packaging libssl in case the version changes. Signed-off-by: Steve Bennett --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 36fd95b..6a83ba0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,6 +11,6 @@ test_script: - cmd: C:\msys64\usr\bin\bash -lc "cd /c/projects/jimtcl; make test" after_build: - cmd: copy jimsh.exe jimsh_debug.exe - - cmd: C:\msys64\usr\bin\bash -lc "cd /c/projects/jimtcl; strip jimsh.exe; 7z a jimsh.zip jimsh.exe jimsh_debug.exe /c/msys64/mingw32/bin/{libcrypto-1_1.dll,libgcc_s_dw2-1.dll,libsqlite3-0.dll,libssl-1_1.dll,libwinpthread-1.dll,zlib1.dll}" + - cmd: C:\msys64\usr\bin\bash -lc "cd /c/projects/jimtcl; strip jimsh.exe; 7z a jimsh.zip jimsh.exe jimsh_debug.exe /c/msys64/mingw32/bin/{libcrypto-*.dll,libgcc_s_dw2-1.dll,libsqlite3-0.dll,libssl-*.dll,libwinpthread-1.dll,zlib1.dll}" artifacts: - path: jimsh.zip -- cgit v1.1