Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Constantino <wiiaboo@gmail.com>2017-02-10 03:53:03 +0300
committerRalph Giles <giles@thaumas.net>2017-05-25 08:09:47 +0300
commit644bae456d602c999b5ad0872647238f17fe9f6b (patch)
treef1e1d9c043b5f19cfa0b11d88a5a89a9c053f70e /.appveyor.yml
parentf17991727e94230af16ec8f11c9a3fb247794fba (diff)
appveyor: move to dotfile like travis
Less clutter on systems that hide dotfiles. Signed-off-by: Ralph Giles <giles@thaumas.net>
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml42
1 files changed, 42 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
new file mode 100644
index 00000000..b56b8d61
--- /dev/null
+++ b/.appveyor.yml
@@ -0,0 +1,42 @@
+image: Visual Studio 2015
+configuration:
+- Debug
+- DebugDLL
+- DebugDLL_fixed
+- Release
+- ReleaseDLL
+- ReleaseDLL_fixed
+
+platform:
+- Win32
+- x64
+
+build:
+ project: win32\VS2015\opus.sln
+ parallel: true
+ verbosity: minimal
+
+after_build:
+- 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: >-
+ cd %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%
+
+ test_opus_api.exe
+
+ test_opus_decode.exe
+
+ test_opus_encode.exe
+
+artifacts:
+- path: opus.zip