surfaces-unies/.gitlab-ci.yml

26 lines
354 B
YAML
Raw Permalink 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
- 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
2018-11-26 01:31:59 +00:00
pages:
stage: build
image: tsgkadot/docker-doxygen
script:
- cd doc && doxygen Doxyfile && cd ..
- pwd && ls -aHl
- mv doc/html/ public/
artifacts:
paths:
- public