From 102656582c4bc186ac96535aece45eb1fe0d3815 Mon Sep 17 00:00:00 2001 From: Eugenio Romano Date: Thu, 1 Feb 2018 10:08:41 +0000 Subject: [PATCH] [NO-ISSUE] appveyor build fix experimenting (#2845) * appveyor fix --- appveyor.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 670d913101..89e4221079 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,10 +9,10 @@ environment: nodejs_version: "8" matrix: - - COMPONENT_NAME: core - - COMPONENT_NAME: process-service - - COMPONENT_NAME: content-service - - COMPONENT_NAME: insights + - COMPONENT_NAME: process-service + - COMPONENT_NAME: content-service + - COMPONENT_NAME: core + - COMPONENT_NAME: insights # - COMPONENT_NAME: ng2-demo-shell # Install scripts. (runs after repo cloning) @@ -38,7 +38,7 @@ install: else (cd scripts && sh npm-build-all.sh -t "insights" -vjsapi alpha|| exit 1) ) - - if %COMPONENT_NAME% EQU core ( + - if %COMPONENT_NAME% EQU core ( if %APPVEYOR_REPO_BRANCH EQU master (cd scripts && sh npm-build-all.sh -t "core" || exit 1) else @@ -53,3 +53,5 @@ install: # Don't actually build. build: off +matrix: + fast_finish: true