aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml26
1 files changed, 10 insertions, 16 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 81080828..aa155af4 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,27 +1,21 @@
-version: 1.20.0.{build}
+version: 1.23.1.{build}
environment:
+ APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
+ GEN: "Visual Studio 15 2017"
matrix:
- - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- GEN: "Visual Studio 14 2015"
- ARCH: Win32
+ - ARCH: Win32
CFG: Release
- - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- GEN: "Visual Studio 14 2015"
- ARCH: x64
- CFG: Release
- - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- GEN: "Visual Studio 15 2017"
- ARCH: x64
+ - ARCH: x64
CFG: Release
-install:
- # Remove the VS Xamarin targets to reduce AppVeyor specific noise in build
- # logs. See also http://help.appveyor.com/discussions/problems/4569
- - del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
+after_build:
+- 7z a ..\soft_oal.zip "%APPVEYOR_BUILD_FOLDER%\build\%CFG%\soft_oal.dll" "%APPVEYOR_BUILD_FOLDER%\README.md" "%APPVEYOR_BUILD_FOLDER%\COPYING"
+
+artifacts:
+- path: soft_oal.zip
build_script:
- cd build
- cmake -G "%GEN%" -A %ARCH% -DALSOFT_BUILD_ROUTER=ON -DALSOFT_REQUIRE_WINMM=ON -DALSOFT_REQUIRE_DSOUND=ON -DALSOFT_REQUIRE_WASAPI=ON -DALSOFT_EMBED_HRTF_DATA=YES ..
- cmake --build . --config %CFG% --clean-first
-