Skip to content
Snippets Groups Projects
Commit 2b400ab4 authored by Dominik Thoennes's avatar Dominik Thoennes
Browse files

fix missing dep

parent 8d339dd8
No related merge requests found
...@@ -55,6 +55,7 @@ stages: ...@@ -55,6 +55,7 @@ stages:
- make -j $NUM_BUILD_CORES -l $NUM_CORES - make -j $NUM_BUILD_CORES -l $NUM_CORES
- ctest -LE $CTEST_EXCLUDE_LABELS -C $CMAKE_BUILD_TYPE --output-on-failure -j $NUM_CORES -T Test - ctest -LE $CTEST_EXCLUDE_LABELS -C $CMAKE_BUILD_TYPE --output-on-failure -j $NUM_CORES -T Test
after_script: after_script:
- pip3 install lxml
- python3 cmake/ctest2junit.py build > report.xml - python3 cmake/ctest2junit.py build > report.xml
tags: tags:
- docker - docker
...@@ -1921,6 +1922,7 @@ coverage: ...@@ -1921,6 +1922,7 @@ coverage:
- MSBuild.exe walberla.sln /property:Configuration=$BUILD_CONFIGURATION /verbosity:minimal /maxcpucount:4 - MSBuild.exe walberla.sln /property:Configuration=$BUILD_CONFIGURATION /verbosity:minimal /maxcpucount:4
- ctest -LE $CTEST_EXCLUDE_LABELS -C $BUILD_CONFIGURATION --output-on-failure -j 4 -T Test - ctest -LE $CTEST_EXCLUDE_LABELS -C $BUILD_CONFIGURATION --output-on-failure -j 4 -T Test
after_script: after_script:
- pip3 install lxml
- python3 cmake/ctest2junit.py build > report.xml - python3 cmake/ctest2junit.py build > report.xml
variables: variables:
CMAKE_GENERATOR: "Visual Studio 15 2017 Win64" CMAKE_GENERATOR: "Visual Studio 15 2017 Win64"
...@@ -2114,6 +2116,7 @@ msvc-14.2_mpionly: ...@@ -2114,6 +2116,7 @@ msvc-14.2_mpionly:
- python3 -m pytest --junitxml=report.xml pystencils_walberla lbmpy_walberla - python3 -m pytest --junitxml=report.xml pystencils_walberla lbmpy_walberla
- cd .. - cd ..
after_script: after_script:
- pip3 install lxml
- python3 cmake/ctest2junit.py build > report.xml - python3 cmake/ctest2junit.py build > report.xml
tags: tags:
- mac - mac
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment