surfaces-unies/.gitlab-ci.yml
Phuntsok Drak-pa 89b9385db4
update
2018-11-25 00:53:42 +01:00

29 lines
462 B
YAML

image: rikorose/gcc-cmake:latest
stages:
- build
- pages
cache:
build:
stage: build
script:
- gcc --version
- make debug
- make release
pages:
stage: build
image: ubuntu:trusty
script:
- export DEBIAN_FRONTEND=noninteractive
- apt-get -yq update
- apt-get -yq install graphviz
- apt-get -yq install doxygen
- cd doc && doxygen Doxyfile && cd ..
- mv docs/html/ public/
artifacts:
paths:
- public