Mentions légales du service

Skip to content
Snippets Groups Projects
Commit d988e739 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Add the deploy stage to put online documentation

parent ddb8c53c
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,8 @@ image: hpclib/hiepacs ...@@ -3,7 +3,8 @@ image: hpclib/hiepacs
stages: stages:
- build - build
- test - test
- third - analyse
- deploy
before_script: before_script:
- git submodule update --init --recursive - git submodule update --init --recursive
...@@ -235,7 +236,7 @@ test_parsec_master: ...@@ -235,7 +236,7 @@ test_parsec_master:
- master@solverstack/chameleon - master@solverstack/chameleon
coverity: coverity:
stage: third stage: analyse
dependencies: [] dependencies: []
artifacts: artifacts:
name: chameleon_coverity name: chameleon_coverity
...@@ -257,7 +258,7 @@ coverity: ...@@ -257,7 +258,7 @@ coverity:
- master@solverstack/chameleon - master@solverstack/chameleon
sonarqube: sonarqube:
stage: third stage: analyse
dependencies: dependencies:
- test_starpu_master - test_starpu_master
- test_starpu_simgrid_master - test_starpu_simgrid_master
...@@ -285,17 +286,18 @@ sonarqube: ...@@ -285,17 +286,18 @@ sonarqube:
- master@solverstack/chameleon - master@solverstack/chameleon
doc: doc:
stage: third stage: deploy
dependencies: [] dependencies: []
artifacts: artifacts:
name: chameleon_doc name: chameleon_doc
expire_in: 1 week expire_in: 1 week
paths: paths:
- build/doc/doxygen - public
- build/doc/orgmode
script: script:
- cd build - cd build
- cmake .. -DCHAMELEON_ENABLE_DOC=ON - cmake .. -DCHAMELEON_ENABLE_DOC=ON
- make doc -j5 - make doc -j5
- mv docs/doxygen ../public/
- mv docs/orgmode ../public/
only: only:
- master@solverstack/chameleon - master@solverstack/chameleon
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment