IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 32753c87 authored by Lukas Nellen's avatar Lukas Nellen :footprints: Committed by Hans Dembinski
Browse files

Never call `make` direclty, always use `cmake --build`

Makes it easier in the future to use ninja as a generator
parent 1f0b280d
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ coverage:
- cmake .. -DCMAKE_BUILD_TYPE=Coverage
- cmake --build . -- -j4
- ctest -j4 -V >& test.log || gzip -v -9 -S .gz test.log
- make coverage && tar czf coverage-report.tar.gz coverage-report
- cmake --build . --target coverage && tar czf coverage-report.tar.gz coverage-report
artifacts:
expire_in: 1 year
paths:
......@@ -55,7 +55,7 @@ pages:
- mkdir build
- cd build
- cmake ..
- make doxygen
- cmake --build . --target doxygen
- mkdir .public
- cp -r Documentation/Doxygen/html .public/
- mv .public ../public
......
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