diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ea08c7599f6a236575ae05af50fe3bb86f093ef9..90b13ed363aadda43ab6cbded93eae1761da8f21 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,21 +4,21 @@ stages: - build - deploy -compile: - stage: build - tags: - - sodium - script: - - mkdir build && cd build && cmake ../. -DCMAKE_INSTALL_PREFIX=../install && make -j20 && make install + #compile: + # stage: build + # tags: + # - sodium + # script: + # - mkdir build && cd build && cmake ../. -DCMAKE_INSTALL_PREFIX=../install && make -j20 && make install - #pages: - # image: alpine:latest - # stage: deploy - # script: - # - cp -r docs/html public - # artifacts: - # paths: - # - public - # only: - # - master +pages: + stage: deploy + script: + - mkdir build && cd build && cmake ../. -DCMAKE_INSTALL_PREFIX=../install && make doc_doxygen && cd .. + - cp -r build/doxygen_output/html public + artifacts: + paths: + - public + only: + - master