From: Yann Collet Date: Fri, 23 Mar 2018 22:00:04 +0000 (-0700) Subject: create .tar.zst source package X-Git-Tag: v1.3.4~1^2~5^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=929608146a439c4bd28b989a5af47cb9afce2af5;p=thirdparty%2Fzstd.git create .tar.zst source package --- diff --git a/appveyor.yml b/appveyor.yml index 7d6ca99bb..1f092574c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -80,12 +80,17 @@ SET "LDFLAGS=../../zlib/libz.a" && sh -c "%SCRIPT%" && ( if [%COMPILER%]==[gcc] if [%ARTIFACT%]==[true] + ECHO Creating artifacts && + ECHO %cd% && + make clean && 7z a -ttar -so zstd-src.tar * && lib\dll\example\build_package.bat && - make -C programs DEBUGFLAGS= clean zstd && - cd programs\ && 7z a -tzip -mx9 zstd-win-binary-%PLATFORM%.zip zstd.exe && + cd programs\ && make DEBUGFLAGS= clean zstd && + 7z a -tzip -mx9 zstd-win-binary-%PLATFORM%.zip zstd.exe && appveyor PushArtifact zstd-win-binary-%PLATFORM%.zip && cp zstd.exe ..\bin\zstd.exe && - cd ..\bin\ && 7z a -tzip -mx9 zstd-win-release-%PLATFORM%.zip * && + cd .. && zstd --ultra -22 zstd-src.tar && + appveyor PushArtifact zstd-src.tar.zst && + cd bin\ && 7z a -tzip -mx9 zstd-win-release-%PLATFORM%.zip * && appveyor PushArtifact zstd-win-release-%PLATFORM%.zip ) )