Hopefully last test

This commit is contained in:
Phuntsok Drak-pa 2019-03-26 15:01:51 +01:00
parent 0f913a8213
commit 1db648c25d
1 changed files with 17 additions and 2 deletions

View File

@ -1,5 +1,11 @@
image: conanio/clang7
build:
stages:
- build
- pages
job A:
stage: build
before_script:
- sudo pip install --upgrade conan
- conan user
@ -11,7 +17,16 @@ build:
- conan profile update env.CXX=/usr/bin/clang++ default
script:
- mkdir build && cd build
- pwd
- conan install .. --build missing
- cmake -DCMAKE_CXX_COMPILER=clang++ .. -G Ninja
- cmake --build .
job B:
stage: doc
image: tsgkadot/docker-doxygen
script:
- cd doc && doxygen Doxyfile && cd ..
- mv doc/html/ public/
artifacts:
paths:
- public