Skip to content

Commit

Permalink
attempt at better appveyor config
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorzmazur committed Nov 21, 2015
1 parent 8f9057c commit 3a637ee
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ branches:

skip_tags: true

clone_folder: c:\projects\yacas

shallow_clone: true

platform:
Expand All @@ -14,12 +12,19 @@ platform:
configuration:
- Release

environment:
matrix:
- CMAKE_GENERATOR: "Visual Studio 12 2013 Win64"
- CMAKE_GENERATOR: "Visual Studio 14 2015 Win64"

before_build:
- cd c:\projects\yacas
- cmake -DCMAKE_INSTALL_PREFIX=%P% -G "Visual Studio 14 2015"
- cmake -H. -Bbuild -G "%CMAKE_GENERATOR%"

build:
project: ALL_BUILD.vcxproj
project: build\ALL_BUILD.vcxproj

test_script:
- cmd: msbuild "RUN_TESTS.vcxproj" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
after_build:
- cmake --build build --use-stderr --config "%CONFIGURATION%" -- /verbosity:minimal
- cmake --build build --use-stderr --config "%CONFIGURATION%" --target check -- /verbosity:minimal
- cmake --build build --use-stderr --config "%CONFIGURATION%" --target package -- /verbosity:minimal

0 comments on commit 3a637ee

Please sign in to comment.