Something went wrong on our end
-
Martin Beseda authoredMartin Beseda authored
.gitlab-ci.yml 3.00 KiB
# Windows 10 with Boost and Exprtk
# downloaded and compiled locally as
# submodules and linked statically
win_visual_studio_static_deps:
tags:
- Win
before_script:
- call VsDevCmd.bat
- cd build_scripts\windows
- call win_download_dependencies.bat
- cd ..\..
- cd build_scripts\windows
- set DEPENDENCIES_LINK_TYPE=static
- call win_VS_build_x64_debug.bat
script:
- call win_run_tests.bat
# Windows 10 with Boost and Exprtk
# downloaded and compiled locally as
# submodules and link dynamically
#
win_visual_studio_shared_deps:
tags:
- Win
before_script:
- call VsDevCmd.bat
- cd build_scripts\windows
- call win_download_dependencies.bat
- cd ..\..
- cd build_scripts\windows
- set DEPENDENCIES_LINK_TYPE=shared
- call win_VS_build_x64_debug.bat
script:
- call win_run_tests.bat
# Latest Ubuntu with Boost and Exprtk
# in system directories, Boost
# installed from the official repository
# => only dynamical linking possible
ubuntu_boost_system:
tags:
- centos7
image: martinbeseda/dockertest:latest
before_script:
- rm -rf external_dependencies
- git clone https://github.com/ArashPartow/exprtk.git
- cp exprtk/exprtk.hpp /usr/include
- export TERM=xterm
- cd build_scripts/linux
- export DEPENDENCIES_LINK_TYPE=shared
- ./linux_gcc_build_x64_debug_system.sh
script:
- './linux_run_tests.sh'
# Latest Ubuntu with Boost and Exprtk
# compiled locally as submodules and
# linked statically
ubuntu_boost_local_static_deps:
tags:
- centos7
image: martinbeseda/ubuntu-ci:latest