summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--appveyor.yml11
1 files changed, 10 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index c85b0b19..7bb96a95 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -17,7 +17,16 @@ build:
verbosity: minimal
after_build:
-- cmd: 7z a opus.zip win32\VS2015\%PLATFORM%\%CONFIGURATION%\opus.lib include\*.h
+- cmd: >-
+ mkdir %APPVEYOR_BUILD_FOLDER%\artifacts
+
+ cd %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%
+
+ for %%a in (lib dll exp pdb) do if exist opus.%%a copy opus.%%a %APPVEYOR_BUILD_FOLDER%\artifacts\
+
+ cd %APPVEYOR_BUILD_FOLDER%
+
+ 7z a opus.zip artifacts\* include\*.h
test_script:
- cmd: >-