summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Constantino (:RiCON) <wiiaboo@gmail.com>2016-07-14 02:41:46 +0100
committerRalph Giles <giles@mozilla.com>2016-07-26 09:51:49 -0700
commit4800d66598126c980571c74df08fe6f8a73e2fe2 (patch)
tree711f1ce6eb311003971c5c822fd8fe5f6e3c9267
parentb6ac6ce6b11c6fe283de7d1410f1d535a16b37f4 (diff)
downloadopus-4800d66598126c980571c74df08fe6f8a73e2fe2.tar.gz
Add appveyor.yml to test VS2015 builds.
Signed-off-by: Ralph Giles <giles@mozilla.com>
-rw-r--r--appveyor.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 00000000..60035bcc
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,29 @@
+version: 1.0.{build}
+branches:
+ only:
+ - master
+ - appveyor
+
+image: Visual Studio 2015
+configuration:
+- Debug
+- DebugDLL
+- Release
+- ReleaseDLL
+
+platform:
+- Win32
+- x64
+
+build:
+ project: win32\VS2015\opus.sln
+ parallel: true
+ verbosity: minimal
+
+test_script:
+- cmd: >-
+ %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%\test_opus_api.exe
+
+ %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%\test_opus_decode.exe
+
+ %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%\test_opus_encode.exe \ No newline at end of file