surfaces-unies/.gitlab-ci.yml
Phuntsok Drak-pa 0939f810ae
typo
2018-11-25 00:59:22 +01:00

25 lines
335 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: rikorose/gcc-cmake:latest
script:
- cd doc && doxygen Doxyfile && cd ..
- mv doc/html/ public/
artifacts:
paths:
- public