surfaces-unies/.gitlab-ci.yml

25 lines
336 B
YAML
Raw Normal View History

2018-11-24 23:53:42 +00:00
image: rikorose/gcc-cmake:latest
2018-10-21 20:03:30 +00:00
stages:
- build
2018-11-24 23:51:32 +00:00
- pages
2018-10-21 20:03:30 +00:00
2018-11-11 17:34:52 +00:00
cache:
2018-10-21 20:03:30 +00:00
build:
stage: build
script:
- gcc --version
2018-11-24 23:32:04 +00:00
- make debug
- make release
2018-11-24 23:51:32 +00:00
pages:
stage: build
2018-11-24 23:58:38 +00:00
image: rikorose/gcc-cmake:latest
2018-11-24 23:51:32 +00:00
script:
- cd doc && doxygen Doxyfile && cd ..
- mv docs/html/ public/
artifacts:
paths:
- public