summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Constantino <wiiaboo@gmail.com>2016-11-10 21:27:05 +0000
committerRalph Giles <giles@thaumas.net>2016-11-10 13:44:11 -0800
commit71ae28ab8e6ddfecaab471eea4bf1dd570e4b202 (patch)
treee939374c006d1119c29c9e36917e71bfbb8f22c6
parentd73c5a9618fb1c5fd9dd04a3e3314f183090e44a (diff)
downloadopus-71ae28ab8e6ddfecaab471eea4bf1dd570e4b202.tar.gz
appveyor: pack interesting files too, not just lib
Signed-off-by: Ralph Giles <giles@thaumas.net>
-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: >-