Skip to content
Snippets Groups Projects
Commit 86f6f534 authored by Josch Morgenstern's avatar Josch Morgenstern
Browse files

Merge branch '109-ci-multithreading' into 'develop'

Resolve "CI multithreading"

Closes #109

See merge request !92
parents f6052431 b15cdb39
No related branches found
No related tags found
1 merge request!92Resolve "CI multithreading"
Pipeline #26882 passed
...@@ -23,7 +23,7 @@ build_ubuntu_gcc: ...@@ -23,7 +23,7 @@ build_ubuntu_gcc:
- mkdir debug - mkdir debug
- cd debug - cd debug
- cmake -DCMAKE_BUILD_TYPE=Debug .. - cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build . - cmake --build . -j 4
artifacts: artifacts:
name: "Documentation - $CI_PIPELINE_ID" name: "Documentation - $CI_PIPELINE_ID"
paths: paths:
...@@ -49,7 +49,7 @@ build_win10_msvc: ...@@ -49,7 +49,7 @@ build_win10_msvc:
- mkdir debug - mkdir debug
- cd debug - cd debug
- cmake -DCMAKE_BUILD_TYPE=Debug .. - cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build . - cmake --build . -j 4
build_win10_mingw: build_win10_mingw:
only: only:
...@@ -85,7 +85,7 @@ build_mac_clang: ...@@ -85,7 +85,7 @@ build_mac_clang:
- export LDFLAGS="-L/usr/local/opt/llvm/lib" - export LDFLAGS="-L/usr/local/opt/llvm/lib"
- export CPPFLAGS="-I/usr/local/opt/llvm/include" - export CPPFLAGS="-I/usr/local/opt/llvm/include"
- cmake -DCMAKE_C_COMPILER="/usr/local/opt/llvm/bin/clang" -DCMAKE_CXX_COMPILER="/usr/local/opt/llvm/bin/clang++" -DCMAKE_BUILD_TYPE=Debug .. - cmake -DCMAKE_C_COMPILER="/usr/local/opt/llvm/bin/clang" -DCMAKE_CXX_COMPILER="/usr/local/opt/llvm/bin/clang++" -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build . - cmake --build . -j 4
deploy_doc_develop: deploy_doc_develop:
only: only:
......
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