diff options
author | Przemyslaw Skibinski <inikep@gmail.com> | 2016-11-16 10:06:28 (GMT) |
---|---|---|
committer | Przemyslaw Skibinski <inikep@gmail.com> | 2016-11-16 10:06:28 (GMT) |
commit | 2dee7bdaf6710f15d7128273014f3d42d0b7afaa (patch) | |
tree | 0cea2cdb5deab5503b5fead004787da3ee8785e8 /appveyor.yml | |
parent | 632ab3b8d411b8da88ea8963992d2b8d2db5a7e9 (diff) | |
download | lz4-2dee7bdaf6710f15d7128273014f3d42d0b7afaa.zip lz4-2dee7bdaf6710f15d7128273014f3d42d0b7afaa.tar.gz lz4-2dee7bdaf6710f15d7128273014f3d42d0b7afaa.tar.bz2 |
include NEWS in lz4_x64.zip and lz4_x86.zip
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 2885e30..93c1101 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -70,11 +70,11 @@ build_script: COPY programs\lz4.exe bin\lz4.exe ) - if [%COMPILER%]==[gcc] if [%PLATFORM%]==[mingw64] ( - 7z.exe a bin\lz4_x64.zip .\bin\lz4.exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include && + 7z.exe a bin\lz4_x64.zip NEWS .\bin\lz4.exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include && appveyor PushArtifact bin\lz4_x64.zip ) - if [%COMPILER%]==[gcc] if [%PLATFORM%]==[mingw32] ( - 7z.exe a bin\lz4_x86.zip .\bin\lz4.exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include && + 7z.exe a bin\lz4_x86.zip NEWS .\bin\lz4.exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include && appveyor PushArtifact bin\lz4_x86.zip ) - if [%COMPILER%]==[gcc] (COPY tests\fullbench.exe programs\) |