surfaces-unies/.gitlab-ci.yml
2018-11-25 00:58:38 +01:00

25 lines
336 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 docs/html/ public/
artifacts:
paths:
- public