From 080e7d88da1309f407dff95899ab53788de19074 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Wed, 23 Jan 2019 12:25:15 +0100 Subject: [PATCH] Actually build ctf --- appveyor.yml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index f81ef3e..0709bda 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,18 +1,15 @@ image: Visual Studio 2017 configuration: Release -before_build: -- cmd: |- - cd %APPVEYOR_BUILD_FOLDER% - mkdir cmake_build - cd cmake_build - cmake --version +install: + ## Prepare .sln with cmake + - cd %APPVEYOR_BUILD_FOLDER% + - mkdir cmake_build + - cd cmake_build + - cmake --version + - cmake c:\projects\ctf -build_script: cmake c:\projects\ctf +build_script: msbuild "C:\projects\ctf\cmake_build\ctf.sln" artifacts: - path: cmake_build\Release\**\*.* - - path: cmake_build\Release\*.* - - path: cmake_build\**\*.lib - - path: cmake_build\**\*.zip -