File tree Expand file tree Collapse file tree 1 file changed +34
-2
lines changed Expand file tree Collapse file tree 1 file changed +34
-2
lines changed Original file line number Diff line number Diff line change @@ -54,9 +54,17 @@ build_script:
54
54
make -v &&
55
55
cc -v &&
56
56
ECHO make %MAKE_PARAMS% &&
57
- make %MAKE_PARAMS% &&
58
- make clean
57
+ make %MAKE_PARAMS%
58
+ )
59
+ - if [%COMPILER%]==[gcc] if [%CONFIGURATION%]==[mingw64] (
60
+ COPY programs\zstd.exe zstd.exe &&
61
+ appveyor PushArtifact zstd.exe
59
62
)
63
+ - if [%COMPILER%]==[gcc] if [%CONFIGURATION%]==[mingw32] (
64
+ COPY programs\zstd.exe zstd32.exe &&
65
+ appveyor PushArtifact zstd32.exe
66
+ )
67
+ - if [%COMPILER%]==[gcc] make clean
60
68
- if [%COMPILER%]==[visual] (
61
69
ECHO *** &&
62
70
ECHO *** Building Visual Studio 2008 %PLATFORM%\%CONFIGURATION% in %APPVEYOR_BUILD_FOLDER% &&
@@ -126,3 +134,27 @@ test_script:
126
134
fuzzer_VS2013_%PLATFORM%_Release.exe %FUZZERTEST% &&
127
135
fuzzer_VS2015_%PLATFORM%_Release.exe %FUZZERTEST%
128
136
)
137
+
138
+ artifacts :
139
+ - path : zstd.exe
140
+ - path : zstd32.exe
141
+
142
+ deploy :
143
+ - provider : GitHub
144
+ auth_token :
145
+ secure : LgJo8emYc3sFnlNWkGl4/VYK3nk/8+RagcsqDlAi3xeqNGNutnKjcftjg84uJoT4
146
+ artifact : zstd.exe
147
+ force_update : true
148
+ on :
149
+ COMPILER : gcc
150
+ PLATFORM : " mingw64"
151
+ appveyor_repo_tag : true
152
+ - provider : GitHub
153
+ auth_token :
154
+ secure : LgJo8emYc3sFnlNWkGl4/VYK3nk/8+RagcsqDlAi3xeqNGNutnKjcftjg84uJoT4
155
+ artifact : zstd32.exe
156
+ force_update : true
157
+ on :
158
+ COMPILER : gcc
159
+ PLATFORM : " mingw32"
160
+ appveyor_repo_tag : true
You can’t perform that action at this time.
0 commit comments