@@ -47,9 +47,9 @@ build_script:
47
47
make -v &&
48
48
echo ----- &&
49
49
if not [%PLATFORM%]==[clang] (
50
- make -C programs lz5 && make -C tests fullbench && make -C lib lib
50
+ make -C programs lizard && make -C tests fullbench && make -C lib lib
51
51
) ELSE (
52
- make -C programs lz5 CC=clang MOREFLAGS="--target=x86_64-w64-mingw32 -Werror -Wconversion -Wno-sign-conversion" &&
52
+ make -C programs lizard CC=clang MOREFLAGS="--target=x86_64-w64-mingw32 -Werror -Wconversion -Wno-sign-conversion" &&
53
53
make -C tests fullbench CC=clang MOREFLAGS="--target=x86_64-w64-mingw32 -Werror -Wconversion -Wno-sign-conversion" &&
54
54
make -C lib lib CC=clang MOREFLAGS="--target=x86_64-w64-mingw32 -Werror -Wconversion -Wno-sign-conversion"
55
55
)
@@ -59,42 +59,42 @@ build_script:
59
59
COPY tests\fullbench.c bin\example\ &&
60
60
COPY lib\xxhash.c bin\example\ &&
61
61
COPY lib\xxhash.h bin\example\ &&
62
- COPY lib\lz5 .h bin\include\ &&
63
- COPY lib\lz5hc .h bin\include\ &&
64
- COPY lib\lz5frame .h bin\include\ &&
65
- COPY lib\liblz5 .a bin\static\liblz5_static .lib &&
66
- COPY lib\dll\liblz5 .* bin\dll\ &&
62
+ COPY lib\lizard .h bin\include\ &&
63
+ COPY lib\lizardhc .h bin\include\ &&
64
+ COPY lib\lizardframe .h bin\include\ &&
65
+ COPY lib\liblizard .a bin\static\liblizard_static .lib &&
66
+ COPY lib\dll\liblizard .* bin\dll\ &&
67
67
COPY lib\dll\example\Makefile bin\example\ &&
68
68
COPY lib\dll\example\fullbench-dll.* bin\example\ &&
69
69
COPY lib\dll\example\README.md bin\ &&
70
- COPY programs\lz5 .exe bin\lz5 .exe
70
+ COPY programs\lizard .exe bin\lizard .exe
71
71
)
72
72
- if [%COMPILER%]==[gccX] if [%PLATFORM%]==[mingw64] (
73
- 7z.exe a bin\lz5_x64 .zip NEWS .\bin\lz5 .exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include &&
74
- appveyor PushArtifact bin\lz5_x64 .zip
73
+ 7z.exe a bin\lizard_x64 .zip NEWS .\bin\lizard .exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include &&
74
+ appveyor PushArtifact bin\lizard_x64 .zip
75
75
)
76
76
- if [%COMPILER%]==[gccX] if [%PLATFORM%]==[mingw32] (
77
- 7z.exe a bin\lz5_x86 .zip NEWS .\bin\lz5 .exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include &&
78
- appveyor PushArtifact bin\lz5_x86 .zip
77
+ 7z.exe a bin\lizard_x86 .zip NEWS .\bin\lizard .exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include &&
78
+ appveyor PushArtifact bin\lizard_x86 .zip
79
79
)
80
80
- if [%COMPILER%]==[gcc] (COPY tests\fullbench.exe programs\)
81
81
- if [%COMPILER%]==[visual] (
82
82
ECHO *** &&
83
83
ECHO *** Building Visual Studio 2010 %PLATFORM%\%CONFIGURATION% &&
84
84
ECHO *** &&
85
- msbuild "visual\VS2010\lz5 .sln" %ADDITIONALPARAM% /m /verbosity:minimal /property:PlatformToolset=v100 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
85
+ msbuild "visual\VS2010\lizard .sln" %ADDITIONALPARAM% /m /verbosity:minimal /property:PlatformToolset=v100 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
86
86
ECHO *** &&
87
87
ECHO *** Building Visual Studio 2012 %PLATFORM%\%CONFIGURATION% &&
88
88
ECHO *** &&
89
- msbuild "visual\VS2010\lz5 .sln" /m /verbosity:minimal /property:PlatformToolset=v110 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
89
+ msbuild "visual\VS2010\lizard .sln" /m /verbosity:minimal /property:PlatformToolset=v110 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
90
90
ECHO *** &&
91
91
ECHO *** Building Visual Studio 2013 %PLATFORM%\%CONFIGURATION% &&
92
92
ECHO *** &&
93
- msbuild "visual\VS2010\lz5 .sln" /m /verbosity:minimal /property:PlatformToolset=v120 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
93
+ msbuild "visual\VS2010\lizard .sln" /m /verbosity:minimal /property:PlatformToolset=v120 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
94
94
ECHO *** &&
95
95
ECHO *** Building Visual Studio 2015 %PLATFORM%\%CONFIGURATION% &&
96
96
ECHO *** &&
97
- msbuild "visual\VS2010\lz5 .sln" /m /verbosity:minimal /property:PlatformToolset=v140 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
97
+ msbuild "visual\VS2010\lizard .sln" /m /verbosity:minimal /property:PlatformToolset=v140 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
98
98
COPY visual\VS2010\bin\%PLATFORM%_%CONFIGURATION%\*.exe programs\
99
99
)
100
100
@@ -104,22 +104,22 @@ test_script:
104
104
ECHO ***
105
105
- if not [%COMPILER%]==[unknown] (
106
106
CD programs &&
107
- lz5 -h &&
108
- lz5 -i1b lz5 .exe &&
109
- lz5 -i1b5 lz5 .exe &&
110
- lz5 -i1b10 lz5 .exe &&
111
- lz5 -i1b15 lz5 .exe &&
112
- echo ------- lz5 tested ------- &&
107
+ lizard -h &&
108
+ lizard -i1b lizard .exe &&
109
+ lizard -i1b5 lizard .exe &&
110
+ lizard -i1b10 lizard .exe &&
111
+ lizard -i1b15 lizard .exe &&
112
+ echo ------- lizard tested ------- &&
113
113
fullbench.exe -i1 fullbench.exe
114
114
)
115
115
116
116
artifacts :
117
- - path : bin\lz5_x64 .zip
118
- - path : bin\lz5_x86 .zip
117
+ - path : bin\lizard_x64 .zip
118
+ - path : bin\lizard_x86 .zip
119
119
120
120
deploy :
121
121
- provider : GitHub
122
- artifact : bin\lz5_x64 .zip
122
+ artifact : bin\lizard_x64 .zip
123
123
auth_token :
124
124
secure : LgJo8emYc3sFnlNWkGl4/VYK3nk/8+RagcsqDlAi3xeqNGNutnKjcftjg84uJoT4
125
125
force_update : true
@@ -131,7 +131,7 @@ deploy:
131
131
branch : autobuild
132
132
133
133
- provider : GitHub
134
- artifact : bin\lz5_x86 .zip
134
+ artifact : bin\lizard_x86 .zip
135
135
auth_token :
136
136
secure : LgJo8emYc3sFnlNWkGl4/VYK3nk/8+RagcsqDlAi3xeqNGNutnKjcftjg84uJoT4
137
137
force_update : true
0 commit comments