ref: 644bae456d602c999b5ad0872647238f17fe9f6b
parent: f17991727e94230af16ec8f11c9a3fb247794fba
author: Ricardo Constantino <wiiaboo@gmail.com>
date: Thu Feb 9 19:53:03 EST 2017
appveyor: move to dotfile like travis Less clutter on systems that hide dotfiles. Signed-off-by: Ralph Giles <giles@thaumas.net>
--- /dev/null
+++ b/.appveyor.yml
@@ -1,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
--- a/appveyor.yml
+++ /dev/null
@@ -1,42 +1,0 @@
-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