Skip to content
Snippets Groups Projects
Commit e727028e authored by Martin Beseda's avatar Martin Beseda
Browse files

FIX: Trying to fix compilation on runner servers.

parent 075e47fd
No related branches found
No related tags found
No related merge requests found
......@@ -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 ../..
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment