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

ENH: Added test for dynamically linked dependencies, which are stored locally.

parent 6dbddc0d
No related branches found
No related tags found
No related merge requests found
......@@ -29,14 +29,16 @@ ubuntu_boost_system:
- 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
ubuntu_boost_local:
# compiled locally as submodules and
# linked statically
ubuntu_boost_local_static_deps:
tags:
- centos7
......@@ -47,9 +49,29 @@ ubuntu_boost_local:
- ./download_dependencies.sh
- cd ../..
- cd build_scripts/linux
- ./linux_gcc_build_x64_debug.sh
- export DEPENDENCIES_LINK_TYPE=static
- ./linux_gcc_build_x64_debug_local.sh
script:
- './linux_run_tests.sh'
# Latest Ubuntu with Boost and Exprtk
# compiled locally as submodules and
# linked dynamically
ubuntu_boost_local_dynamic_deps:
tags:
- centos7
image: martinbeseda/ubuntu-ci:latest
before_script:
- cd build_scripts/linux
- ./download_dependencies.sh
- cd ../..
- cd build_scripts/linux
- export DEPENDENCIES_LINK_TYPE=shared
- ./linux_gcc_build_x64_debug_local.sh
script:
- './linux_run_tests.sh'
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