Skip to content
Snippets Groups Projects
Commit f68b93ae authored by David Vojtek's avatar David Vojtek
Browse files

FIX: Trying to fix CI

parent e07e95df
No related branches found
No related tags found
No related merge requests found
# Windows 10 with Boost and Exprtk # Windows 10 with Boost, Exprtk and Turtle
# downloaded and compiled locally as # downloaded and compiled locally as
# submodules and linked statically # submodules and linked statically
win_visual_studio_static_deps: win_visual_studio_static_local_deps:
tags: tags:
- Win - Win
...@@ -12,33 +12,56 @@ win_visual_studio_static_deps: ...@@ -12,33 +12,56 @@ win_visual_studio_static_deps:
- cd ..\.. - cd ..\..
- cd build_scripts\windows - cd build_scripts\windows
- set DEPENDENCIES_LINK_TYPE=static - set DEPENDENCIES_LINK_TYPE=static
- set clean_after=yes
- call win_VS_build_x64_debug.bat - call win_VS_build_x64_debug.bat
- cd ..\..
script: script:
- cd build_scripts\windows
- call win_run_tests.bat - call win_run_tests.bat
- cd ..\..
# Windows 10 with Boost and Exprtk # Windows 10 with Boost, Exprtk and Turtle
# downloaded and compiled locally as # downloaded and compiled locally as
# submodules and link dynamically # submodules and link dynamically
# #
win_visual_studio_shared_deps: #win_visual_studio_shared_deps:
tags: # tags:
- Win # - Win
#
before_script: # before_script:
- call VsDevCmd.bat # - call VsDevCmd.bat
- cd build_scripts\windows # - cd build_scripts\windows
- call win_download_dependencies.bat # - call win_download_dependencies.bat
- cd ..\.. # - set DEPENDENCIES_LINK_TYPE=shared
- cd build_scripts\windows # - call win_VS_build_x64_debug.bat
- set DEPENDENCIES_LINK_TYPE=shared # - cd ..\..
- call win_VS_build_x64_debug.bat #
# script:
script: # - cd build_scripts\windows
- call win_run_tests.bat # - call win_run_tests.bat
# - cd ..\..
#
#
#win_visual_studio_shared_local_deps:
# tags:
# - Win
#
# before_script:
# - call VsDevCmd.bat
# - cd build_scripts\windows
# - call win_download_dependencies.bat
# - set DEPENDENCIES_LINK_TYPE=shared
# - call win_VS_build_x64_debug.bat
# - cd ..\..
#
# script:
# - cd build_scripts\windows
# - call win_run_tests.bat
# - cd ..\..
# Latest Ubuntu with Boost and Exprtk # Latest Ubuntu with Boost, Exprtk and Turtle
# in system directories, Boost # in system directories, Boost
# installed from the official repository # installed from the official repository
# => only dynamical linking possible # => only dynamical linking possible
...@@ -49,18 +72,22 @@ ubuntu_boost_system: ...@@ -49,18 +72,22 @@ ubuntu_boost_system:
image: martinbeseda/dockertest:latest image: martinbeseda/dockertest:latest
before_script: before_script:
- rm -rf external_dependencies - rm -rf external_dependencies/boost/*
- git clone https://github.com/ArashPartow/exprtk.git - rm -rf external_dependencies/exprtk/*
- cp exprtk/exprtk.hpp /usr/include - rm -rf exprtk
- export TERM=xterm - export TERM=xterm
- cd build_scripts/linux - cd build_scripts/linux
- export DEPENDENCIES_LINK_TYPE=shared - export DEPENDENCIES_LINK_TYPE=shared
- export CLEAN_AFTER=yes
- ./linux_gcc_build_x64_debug_system.sh - ./linux_gcc_build_x64_debug_system.sh
- cd ../..
script: script:
- cd build_scripts/linux
- './linux_run_tests.sh' - './linux_run_tests.sh'
- cd ../..
# Latest Ubuntu with Boost and Exprtk # Latest Ubuntu with Boost, Exprtk and Turtle
# compiled locally as submodules and # compiled locally as submodules and
# linked statically # linked statically
ubuntu_boost_local_static_deps: ubuntu_boost_local_static_deps:
...@@ -70,17 +97,22 @@ ubuntu_boost_local_static_deps: ...@@ -70,17 +97,22 @@ ubuntu_boost_local_static_deps:
image: martinbeseda/ubuntu-ci:latest image: martinbeseda/ubuntu-ci:latest
before_script: before_script:
- export TERM=xterm
- cd build_scripts/linux - cd build_scripts/linux
- ./download_dependencies.sh - ./download_dependencies.sh
- cd ../.. - cd ../..
- cd build_scripts/linux - cd build_scripts/linux
- export DEPENDENCIES_LINK_TYPE=static - export DEPENDENCIES_LINK_TYPE=static
- export CLEAN_AFTER=yes
- ./linux_gcc_build_x64_debug_local.sh - ./linux_gcc_build_x64_debug_local.sh
- cd ../..
script: script:
- cd build_scripts/linux
- './linux_run_tests.sh' - './linux_run_tests.sh'
- cd ../..
# Latest Ubuntu with Boost and Exprtk # Latest Ubuntu with Boost, Exprtk and Turtle
# compiled locally as submodules and # compiled locally as submodules and
# linked dynamically # linked dynamically
ubuntu_boost_local_dynamic_deps: ubuntu_boost_local_dynamic_deps:
...@@ -90,15 +122,20 @@ ubuntu_boost_local_dynamic_deps: ...@@ -90,15 +122,20 @@ ubuntu_boost_local_dynamic_deps:
image: martinbeseda/ubuntu-ci:latest image: martinbeseda/ubuntu-ci:latest
before_script: before_script:
- export TERM=xterm
- cd build_scripts/linux - cd build_scripts/linux
- ./download_dependencies.sh - ./download_dependencies.sh
- cd ../.. - cd ../..
- cd build_scripts/linux - cd build_scripts/linux
- export DEPENDENCIES_LINK_TYPE=shared - export DEPENDENCIES_LINK_TYPE=shared
- export CLEAN_AFTER=yes
- ./linux_gcc_build_x64_debug_local.sh - ./linux_gcc_build_x64_debug_local.sh
- cd ../..
script: script:
- cd build_scripts/linux
- './linux_run_tests.sh' - './linux_run_tests.sh'
- cd ../..
#code_quality: #code_quality:
......
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