summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorVincent Rouvreau <vincent.rouvreau@inria.fr>2022-12-02 09:42:45 +0100
committerVincent Rouvreau <vincent.rouvreau@inria.fr>2022-12-02 09:42:45 +0100
commit18fa67330d5a3ba1848b9143c23cc46877e67baf (patch)
treeeddacfb8ee8036c0037a9ac3937c079cc7ad3da9 /.circleci
parent5d0c294572a9e34a7a70e78806ac3cf805357712 (diff)
Modifications to test biblio files in CI
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index c8c0b70b..bf95d2f5 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -125,6 +125,26 @@ jobs:
path: /tmp/doxygen
destination: doxygen
+ bibliography:
+ docker:
+ - image: gudhi/doxygen_for_gudhi:latest
+ steps:
+ - checkout
+ - run:
+ name: Checkout submodules
+ command: |
+ git submodule sync
+ git submodule update --init
+ - run:
+ name: Test the LaTeX bibliography files
+ command: |
+ mkdir build
+ cd build
+ cmake -DWITH_GUDHI_THIRD_PARTY=OFF -DUSER_VERSION_DIR=version ..
+ cd biblio/test
+ latexmk -pdf -interaction=nonstopmode test_biblio.tex
+ latexmk -pdf -interaction=nonstopmode test_gudhi_citation.tex
+
### With all third parties, except CGAL and Eigen