summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2020-02-12 12:44:51 +0100
committerGitHub <noreply@github.com>2020-02-12 12:44:51 +0100
commitbed30b19e57669c0b8ad385f1124586ed3499a2d (patch)
tree6ddbe2f3015899159818bd6e3003d78dd920d707 /.circleci
parentee0f12f1df406c81c6ad860c494eed908021fad9 (diff)
parentd6f3165831d20bf3a91f1ff7e9734a574eaa567a (diff)
Merge pull request #182 from mglisse/ext
Interface to hera's Wasserstein distance
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 f4073746..4f86cb12 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -51,6 +51,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 ..;
@@ -78,6 +80,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 ..;
@@ -97,4 +101,4 @@ workflows:
- tests
- utils
- python
- - doxygen \ No newline at end of file
+ - doxygen