Working on travis file

This commit is contained in:
Daniel Chappuis 2020-05-14 15:30:38 +02:00
parent 12aa29a8e4
commit b682c75a29

View File

@ -249,19 +249,21 @@ branches:
- develop
script:
- mkdir build_directory
- cd build_directory
- mkdir build_rp3d
- cd build_rp3d
- cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} —DRP3D_DOUBLE_PRECISION_ENABLED=${DOUBLE_PRECISION} -DRP3D_COMPILE_TESTS=True -DRP3D_PROFILING_ENABLED=${PROFILER} -DRP3D_CODE_COVERAGE_ENABLED=${CODE_COVERAGE} ../
- make -j2 && make test ARGS="-V"
- if [ "${VALGRIND}" == "True" ]; then
valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --error-exitcode=1 test/tests;
fi
- sudo make install
- cd ../
- mkdir build_helloworld
- cd build_helloworld
- cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ../helloworld/
- make -j2
- if [ "${CODE_COVERAGE}" == "False" ]; then
sudo make install;
cd ../;
mkdir build_helloworld;
cd build_helloworld;
cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ../helloworld/;
make -j2;
fi
after_success: