From e943d12286dd887212afd1e9f5ec99b3b345972e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Csaba=20Osztrogon=C3=A1c?= Date: Wed, 1 Jul 2020 19:51:58 +0200 Subject: [PATCH] Speedup AppVeyor CI runtime (#3965) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There is no good reason to test JERRY_DEBUGGER=OFF configuration too, because debugger itself contains Windows specific codepath. If the build works with debugger, it has to work without debugger too. JerryScript-DCO-1.0-Signed-off-by: Csaba Osztrogonác oszi@inf.u-szeged.hu --- appveyor.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 2fb839a5f..ac88bbcf8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,17 +15,12 @@ platform: - x64 - Win32 -environment: - matrix: - - JERRY_DEBUGGER: ON - - JERRY_DEBUGGER: OFF - # Steps of a job. init: - cmake -version before_build: - - if "%PLATFORM%"=="Win32" cmake -G"Visual Studio 15 2017" -Bbuild -H. -DJERRY_DEBUGGER=%JERRY_DEBUGGER% - - if "%PLATFORM%"=="x64" cmake -G"Visual Studio 15 2017 Win64" -Bbuild -H. -DJERRY_DEBUGGER=%JERRY_DEBUGGER% + - if "%PLATFORM%"=="Win32" cmake -G"Visual Studio 15 2017" -Bbuild -H. -DJERRY_DEBUGGER=ON + - if "%PLATFORM%"=="x64" cmake -G"Visual Studio 15 2017 Win64" -Bbuild -H. -DJERRY_DEBUGGER=ON build: project: build\Jerry.sln parallel: true