From: Yann Collet Date: Fri, 5 May 2017 00:40:40 +0000 (-0700) Subject: creates a binary archive without the `programs` directory X-Git-Tag: v1.3.0~1^2~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36153af5ec8f281ce507ee4ece4e78a4059d5452;p=thirdparty%2Fzstd.git creates a binary archive without the `programs` directory also improves compression ratio to -mx9 --- diff --git a/appveyor.yml b/appveyor.yml index df7567b8e..1f8b8cf8a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -88,10 +88,10 @@ ( if [%COMPILER%]==[gcc] if [%ARTIFACT%]==[true] lib\dll\example\build_package.bat && make -C programs DEBUGFLAGS= clean zstd && - 7z a -tzip zstd-win-binary-%PLATFORM%.zip programs\zstd.exe && + cd programs\ && 7z a -tzip -mx9 zstd-win-binary-%PLATFORM%.zip zstd.exe && appveyor PushArtifact zstd-win-binary-%PLATFORM%.zip && - cp programs\zstd.exe bin\zstd.exe && - cd bin\ && 7z a -tzip zstd-win-release-%PLATFORM%.zip * && + cp zstd.exe ..\bin\zstd.exe && + cd ..\bin\ && 7z a -tzip -mx9 zstd-win-release-%PLATFORM%.zip * && appveyor PushArtifact zstd-win-release-%PLATFORM%.zip ) )