From a509570c1dd1ac9a1c7c879c1679aaa8d6e3f18f Mon Sep 17 00:00:00 2001 From: Akos Kiss Date: Mon, 28 May 2018 11:59:46 +0200 Subject: [PATCH] Simplify the AppVeyor configuration file (#2361) JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu --- appveyor.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index c019a15e6..6e7ad0cf6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,6 +6,8 @@ branches: - coverity_scan - gh_pages skip_tags: true + +# Build matrix setup. image: - Visual Studio 2017 configuration: @@ -14,16 +16,13 @@ configuration: platform: - x64 - Win32 -init: - - cmd: | - cmake -version -before_build: - - cmd: | - mkdir build - cd build - if "%PLATFORM%"=="Win32" cmake -G"Visual Studio 15 2017" .. - if "%PLATFORM%"=="x64" cmake -G"Visual Studio 15 2017 Win64" .. +# Steps of a job. +init: + - cmake -version +before_build: + - if "%PLATFORM%"=="Win32" cmake -G"Visual Studio 15 2017" -Bbuild -H. + - if "%PLATFORM%"=="x64" cmake -G"Visual Studio 15 2017 Win64" -Bbuild -H. build: project: build\Jerry.sln parallel: true