From e727028ee506023b33068431eb1f6a53c494bcec Mon Sep 17 00:00:00 2001
From: Martin Beseda <martin.beseda@vsb.cz>
Date: Sun, 30 Dec 2018 13:03:19 +0100
Subject: [PATCH] FIX: Trying to fix compilation on runner servers.

---
 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ac6fa2de..20ce2c0c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -13,7 +13,7 @@ win_visual_studio_static_local_deps:
         - cd build_scripts\windows
         - set DEPENDENCIES_LINK_TYPE=static
         - set clean_after=yes
-        - call win_VS_build_x64_debug.bat
+        - call win_VS_build_x64_debug.bat || exit /b 1
 
     script:
         - cd ..\..
@@ -79,7 +79,7 @@ ubuntu_boost_system:
         - cd build_scripts/linux
         - export DEPENDENCIES_LINK_TYPE=shared
         - export CLEAN_AFTER=yes
-        - ./linux_gcc_build_x64_debug_system.sh
+        - ./linux_gcc_build_x64_debug_system.sh || exit 1
 
     script:
         - cd ../..
@@ -104,7 +104,7 @@ ubuntu_boost_local_static_deps:
         - cd build_scripts/linux
         - export DEPENDENCIES_LINK_TYPE=static
         - export CLEAN_AFTER=yes
-        - ./linux_gcc_build_x64_debug_local.sh
+        - ./linux_gcc_build_x64_debug_local.sh || exit 1
 
     script:
         - cd ../..
@@ -129,7 +129,7 @@ ubuntu_boost_local_dynamic_deps:
         - cd build_scripts/linux
         - export DEPENDENCIES_LINK_TYPE=shared
         - export CLEAN_AFTER=yes
-        - ./linux_gcc_build_x64_debug_local.sh
+        - ./linux_gcc_build_x64_debug_local.sh || exit 1
 
     script:
         - cd ../..
-- 
GitLab