Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ci: don't rebuild specifically to build and linkcheck the doc
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Thu, 30 May 2019 10:31:23 +0000 (12:31 +0200)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Thu, 30 May 2019 10:31:23 +0000 (12:31 +0200)
.gitlab-ci.yml

index 74bb396..50a0e28 100644 (file)
@@ -1,10 +1,13 @@
 image: simgrid/build-deps
 
+stages:
+ - build
+ - test
+
 pages:
+  stage: test
   script:
   - pip3 install --requirement docs/requirements.txt
-  - cmake -Denable_model-checking=OFF -Denable_documentation=OFF -Denable_coverage=OFF -Denable_java=OFF -Denable_lua=OFF -Denable_compile_optimizations=OFF -Denable_smpi=OFF .
-  - make -j4 python-bindings
   - cd docs
   - LC_ALL=C.UTF-8 ./Build.sh
   - mv build/html ../public
@@ -18,8 +21,10 @@ pages:
     - public
   only:
   - master
+  allow_fail: true
 
 ctest:
+  stage: build
   script:
   - cmake -Denable_model-checking=OFF -Denable_documentation=OFF -Denable_coverage=ON -Denable_java=ON -Denable_lua=OFF -Denable_compile_optimizations=ON -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_compile_warnings=ON .
   - make VERBOSE=1 all tests && ctest --output-on-failure