summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2019-12-26 20:37:19 +0100
committerMarc Glisse <marc.glisse@inria.fr>2019-12-26 20:37:19 +0100
commit7568b34c56e6a6102507df1be0029a0259f2afa7 (patch)
tree4f2684d48de7ff103ac3f161558285c5bf46aae8 /.circleci
parent003b33403ab92e25cab2b9e51b36528d5cc6112c (diff)
Checkout submodules in circleci
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 5e45bc14..51b6c019 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -50,6 +50,8 @@ jobs:
- run:
name: Build and test python module. Generates and tests the python documentation
command: |
+ git submodule init
+ git submodule update
mkdir build;
cd build;
cmake -DUSER_VERSION_DIR=version ..;
@@ -74,6 +76,8 @@ jobs:
- run:
name: Generates the C++ documentation with doxygen
command: |
+ git submodule init
+ git submodule update
mkdir build;
cd build;
cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF -DUSER_VERSION_DIR=version ..;
@@ -93,4 +97,4 @@ workflows:
- tests
- utils
- python
- - doxygen \ No newline at end of file
+ - doxygen