summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Constantino (:RiCON) <wiiaboo@gmail.com>2016-07-26 23:18:38 +0100
committerRalph Giles <giles@thaumas.net>2016-07-27 11:49:00 -0700
commitc41aeebea836cf2f3a67b3ac5d7bbfb0924ca1e7 (patch)
tree2652f86ce13b71dc922aae8275202faa371b261e
parenteca752f1008044ff6ff266a1a2433c1c794b7cbf (diff)
downloadopus-c41aeebea836cf2f3a67b3ac5d7bbfb0924ca1e7.tar.gz
appveyor: Package includes and opus.lib as an artifact.
This lets projects which depend on opus build against our test results. Signed-off-by: Ralph Giles <giles@mozilla.com>
-rw-r--r--appveyor.yml14
1 files changed, 11 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 0b3c4875..c85b0b19 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -16,10 +16,18 @@ build:
parallel: true
verbosity: minimal
+after_build:
+- cmd: 7z a opus.zip win32\VS2015\%PLATFORM%\%CONFIGURATION%\opus.lib include\*.h
+
test_script:
- cmd: >-
- %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%\test_opus_api.exe
+ cd %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%
+
+ test_opus_api.exe
+
+ test_opus_decode.exe
- %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%\test_opus_decode.exe
+ test_opus_encode.exe
- %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%\test_opus_encode.exe
+artifacts:
+- path: opus.zip