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