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:58:55 +0300
committerRalph Giles <giles@thaumas.net>2017-05-25 08:10:06 +0300
commit3149f9d0b89ee46068f0adb40531bd80a081516c (patch)
tree255b400a3476b0919680f0e70091edffb507877a /.appveyor.yml
parent644bae456d602c999b5ad0872647238f17fe9f6b (diff)
appveyor: simplify and preserve paths
Artifact with preserved paths is more useful for CI. Signed-off-by: Ralph Giles <giles@thaumas.net>
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml24
1 files changed, 6 insertions, 18 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index b56b8d61..5afa2c1e 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -17,26 +17,14 @@ build:
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
+- cd %APPVEYOR_BUILD_FOLDER%
+- 7z a opus.zip win32\VS2015\%PLATFORM%\%CONFIGURATION%\opus.??? 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
+- cd %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%
+- test_opus_api.exe
+- test_opus_decode.exe
+- test_opus_encode.exe
artifacts:
- path: opus.zip