From 511755957af00e7a4dac0af579551d53f844fa51 Mon Sep 17 00:00:00 2001 From: Marc Glisse Date: Wed, 16 Nov 2022 16:21:20 +0100 Subject: Checkout submodules for all CircleCI jobs --- .circleci/config.yml | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to '.circleci/config.yml') diff --git a/.circleci/config.yml b/.circleci/config.yml index e2df5c87..ad6f0e3f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,6 +12,7 @@ jobs: - run: name: Build and test examples command: | + git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=ON -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF .. @@ -26,6 +27,7 @@ jobs: - run: name: Build and test unitary tests command: | + git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF .. @@ -40,6 +42,7 @@ jobs: - run: name: Build and test utilities command: | + git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=OFF .. @@ -54,8 +57,7 @@ jobs: - run: name: Build and test python module. Generates and tests the python documentation command: | - git submodule init - git submodule update + git submodule update --init mkdir build cd build cmake -DWITH_GUDHI_THIRD_PARTY=OFF -DUSER_VERSION_DIR=version .. @@ -85,8 +87,7 @@ jobs: - run: name: Generates the C++ documentation with doxygen command: | - git submodule init - git submodule update + git submodule update --init mkdir build cd build cmake -DWITH_GUDHI_THIRD_PARTY=OFF -DUSER_VERSION_DIR=version .. @@ -116,6 +117,7 @@ jobs: - run: name: Build and test examples without cgal and eigen command: | + git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=ON -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF .. @@ -130,6 +132,7 @@ jobs: - run: name: Build and test unitary tests without cgal and eigen command: | + git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF .. @@ -144,6 +147,7 @@ jobs: - run: name: Build and test utilities without cgal and eigen command: | + git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=OFF .. @@ -158,8 +162,7 @@ jobs: - run: name: Build and test python module without cgal and eigen command: | - git submodule init - git submodule update + git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=ON -DPython_ADDITIONAL_VERSIONS=3 .. @@ -178,6 +181,7 @@ jobs: - run: name: Build and test examples without cgal command: | + git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DEIGEN3_INCLUDE_DIR=/eigen-3.3.9 -DWITH_GUDHI_EXAMPLE=ON -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF .. @@ -192,6 +196,7 @@ jobs: - run: name: Build and test unitary tests without cgal command: | + git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DEIGEN3_INCLUDE_DIR=/eigen-3.3.9 -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF .. @@ -206,6 +211,7 @@ jobs: - run: name: Build and test utilities without cgal command: | + git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DEIGEN3_INCLUDE_DIR=/eigen-3.3.9 -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=OFF .. @@ -220,8 +226,7 @@ jobs: - run: name: Build and test python module without cgal command: | - git submodule init - git submodule update + git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DEIGEN3_INCLUDE_DIR=/eigen-3.3.9 -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=ON -DPython_ADDITIONAL_VERSIONS=3 .. -- cgit v1.2.3 From e591a9564ddf31befd153acd088e19b50421807c Mon Sep 17 00:00:00 2001 From: Marc Glisse Date: Fri, 25 Nov 2022 11:55:57 +0100 Subject: CircleCI tweak --- .circleci/config.yml | 39 ++++++++++++++++++++++++++------------- 1 file changed, 26 insertions(+), 13 deletions(-) (limited to '.circleci/config.yml') diff --git a/.circleci/config.yml b/.circleci/config.yml index ad6f0e3f..fc363ea7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,10 +9,11 @@ jobs: - image: gudhi/ci_for_gudhi:latest steps: - checkout + - run: git submodule sync + - run: git submodule update --init - run: name: Build and test examples command: | - git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=ON -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF .. @@ -24,10 +25,11 @@ jobs: - image: gudhi/ci_for_gudhi:latest steps: - checkout + - run: git submodule sync + - run: git submodule update --init - run: name: Build and test unitary tests command: | - git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF .. @@ -39,10 +41,11 @@ jobs: - image: gudhi/ci_for_gudhi:latest steps: - checkout + - run: git submodule sync + - run: git submodule update --init - run: name: Build and test utilities command: | - git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=OFF .. @@ -54,10 +57,11 @@ jobs: - image: gudhi/ci_for_gudhi:latest steps: - checkout + - run: git submodule sync + - run: git submodule update --init - run: name: Build and test python module. Generates and tests the python documentation command: | - git submodule update --init mkdir build cd build cmake -DWITH_GUDHI_THIRD_PARTY=OFF -DUSER_VERSION_DIR=version .. @@ -84,10 +88,11 @@ jobs: - image: gudhi/doxygen_for_gudhi:latest steps: - checkout + - run: git submodule sync + - run: git submodule update --init - run: name: Generates the C++ documentation with doxygen command: | - git submodule update --init mkdir build cd build cmake -DWITH_GUDHI_THIRD_PARTY=OFF -DUSER_VERSION_DIR=version .. @@ -114,10 +119,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout + - run: git submodule sync + - run: git submodule update --init - run: name: Build and test examples without cgal and eigen command: | - git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=ON -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF .. @@ -129,10 +135,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout + - run: git submodule sync + - run: git submodule update --init - run: name: Build and test unitary tests without cgal and eigen command: | - git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF .. @@ -144,10 +151,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout + - run: git submodule sync + - run: git submodule update --init - run: name: Build and test utilities without cgal and eigen command: | - git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=OFF .. @@ -159,10 +167,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout + - run: git submodule sync + - run: git submodule update --init - run: name: Build and test python module without cgal and eigen command: | - git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=ON -DPython_ADDITIONAL_VERSIONS=3 .. @@ -178,10 +187,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout + - run: git submodule sync + - run: git submodule update --init - run: name: Build and test examples without cgal command: | - git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DEIGEN3_INCLUDE_DIR=/eigen-3.3.9 -DWITH_GUDHI_EXAMPLE=ON -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF .. @@ -193,10 +203,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout + - run: git submodule sync + - run: git submodule update --init - run: name: Build and test unitary tests without cgal command: | - git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DEIGEN3_INCLUDE_DIR=/eigen-3.3.9 -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=OFF .. @@ -208,10 +219,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout + - run: git submodule sync + - run: git submodule update --init - run: name: Build and test utilities without cgal command: | - git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DEIGEN3_INCLUDE_DIR=/eigen-3.3.9 -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_TEST=OFF -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=OFF .. @@ -223,10 +235,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout + - run: git submodule sync + - run: git submodule update --init - run: name: Build and test python module without cgal command: | - git submodule update --init mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DEIGEN3_INCLUDE_DIR=/eigen-3.3.9 -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=ON -DPython_ADDITIONAL_VERSIONS=3 .. -- cgit v1.2.3 From 46f4ef780df47e977e9acd95436bded4f5a69ada Mon Sep 17 00:00:00 2001 From: Marc Glisse Date: Fri, 25 Nov 2022 12:22:58 +0100 Subject: CircleCI tweak 2 --- .circleci/config.yml | 91 +++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 65 insertions(+), 26 deletions(-) (limited to '.circleci/config.yml') diff --git a/.circleci/config.yml b/.circleci/config.yml index fc363ea7..c8c0b70b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,8 +9,11 @@ jobs: - image: gudhi/ci_for_gudhi:latest steps: - checkout - - run: git submodule sync - - run: git submodule update --init + - run: + name: Checkout submodules + command: | + git submodule sync + git submodule update --init - run: name: Build and test examples command: | @@ -25,8 +28,11 @@ jobs: - image: gudhi/ci_for_gudhi:latest steps: - checkout - - run: git submodule sync - - run: git submodule update --init + - run: + name: Checkout submodules + command: | + git submodule sync + git submodule update --init - run: name: Build and test unitary tests command: | @@ -41,8 +47,11 @@ jobs: - image: gudhi/ci_for_gudhi:latest steps: - checkout - - run: git submodule sync - - run: git submodule update --init + - run: + name: Checkout submodules + command: | + git submodule sync + git submodule update --init - run: name: Build and test utilities command: | @@ -57,8 +66,11 @@ jobs: - image: gudhi/ci_for_gudhi:latest steps: - checkout - - run: git submodule sync - - run: git submodule update --init + - run: + name: Checkout submodules + command: | + git submodule sync + git submodule update --init - run: name: Build and test python module. Generates and tests the python documentation command: | @@ -88,8 +100,11 @@ jobs: - image: gudhi/doxygen_for_gudhi:latest steps: - checkout - - run: git submodule sync - - run: git submodule update --init + - run: + name: Checkout submodules + command: | + git submodule sync + git submodule update --init - run: name: Generates the C++ documentation with doxygen command: | @@ -119,8 +134,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout - - run: git submodule sync - - run: git submodule update --init + - run: + name: Checkout submodules + command: | + git submodule sync + git submodule update --init - run: name: Build and test examples without cgal and eigen command: | @@ -135,8 +153,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout - - run: git submodule sync - - run: git submodule update --init + - run: + name: Checkout submodules + command: | + git submodule sync + git submodule update --init - run: name: Build and test unitary tests without cgal and eigen command: | @@ -151,8 +172,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout - - run: git submodule sync - - run: git submodule update --init + - run: + name: Checkout submodules + command: | + git submodule sync + git submodule update --init - run: name: Build and test utilities without cgal and eigen command: | @@ -167,8 +191,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout - - run: git submodule sync - - run: git submodule update --init + - run: + name: Checkout submodules + command: | + git submodule sync + git submodule update --init - run: name: Build and test python module without cgal and eigen command: | @@ -187,8 +214,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout - - run: git submodule sync - - run: git submodule update --init + - run: + name: Checkout submodules + command: | + git submodule sync + git submodule update --init - run: name: Build and test examples without cgal command: | @@ -203,8 +233,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout - - run: git submodule sync - - run: git submodule update --init + - run: + name: Checkout submodules + command: | + git submodule sync + git submodule update --init - run: name: Build and test unitary tests without cgal command: | @@ -219,8 +252,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout - - run: git submodule sync - - run: git submodule update --init + - run: + name: Checkout submodules + command: | + git submodule sync + git submodule update --init - run: name: Build and test utilities without cgal command: | @@ -235,8 +271,11 @@ jobs: - image: gudhi/ci_for_gudhi_wo_cgal:latest steps: - checkout - - run: git submodule sync - - run: git submodule update --init + - run: + name: Checkout submodules + command: | + git submodule sync + git submodule update --init - run: name: Build and test python module without cgal command: | -- cgit v1.2.3 From 7637d0e1d07144631bf7c22bbec5356a7376fc11 Mon Sep 17 00:00:00 2001 From: Vincent Rouvreau Date: Thu, 1 Dec 2022 10:46:24 +0100 Subject: python ctest was not launched for python circleci job --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.circleci/config.yml') diff --git a/.circleci/config.yml b/.circleci/config.yml index c8c0b70b..b59b7562 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -82,6 +82,7 @@ jobs: cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=ON -DPython_ADDITIONAL_VERSIONS=3 -DWITH_GUDHI_REMOTE_TEST=ON . cd python python3 setup.py build_ext --inplace + ctest --output-on-failure make sphinx cp -R sphinx /tmp/sphinx python3 setup.py install -- cgit v1.2.3 From 18fa67330d5a3ba1848b9143c23cc46877e67baf Mon Sep 17 00:00:00 2001 From: Vincent Rouvreau Date: Fri, 2 Dec 2022 09:42:45 +0100 Subject: Modifications to test biblio files in CI --- .circleci/config.yml | 20 ++++++++++++++++++++ biblio/bibliography.bib | 2 +- biblio/test/test_biblio.tex | 7 +++++++ biblio/test/test_gudhi_citation.tex | 7 +++++++ src/Doxyfile.in | 1 - src/cmake/modules/GUDHI_user_version_target.cmake | 7 +++++-- 6 files changed, 40 insertions(+), 4 deletions(-) create mode 100644 biblio/test/test_biblio.tex create mode 100644 biblio/test/test_gudhi_citation.tex (limited to '.circleci/config.yml') 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 diff --git a/biblio/bibliography.bib b/biblio/bibliography.bib index 0a3ef43d..d8472ad0 100644 --- a/biblio/bibliography.bib +++ b/biblio/bibliography.bib @@ -1090,7 +1090,7 @@ language={English} @ARTICLE{Reininghaus_Huber_ALL_PSSK, author = {J. Reininghaus and S. Huber and U. Bauer and R. Kwitt}, title = {A Stable Multi-Scale Kernel for Topological Machine Learning.}, - journal = {Proc. 2015 IEEE Conf. Comp. Vision & Pat. Rec. (CVPR '15)}, + journal = {Proc. 2015 IEEE Conf. Comp. Vision \& Pat. Rec. (CVPR '15)}, year = {2015} } diff --git a/biblio/test/test_biblio.tex b/biblio/test/test_biblio.tex new file mode 100644 index 00000000..97dee9ed --- /dev/null +++ b/biblio/test/test_biblio.tex @@ -0,0 +1,7 @@ +\documentclass{article} +\usepackage{hyperref} +\bibliographystyle{plainurl} +\begin{document} +\nocite{*} +\bibliography{../bibliography} +\end{document} \ No newline at end of file diff --git a/biblio/test/test_gudhi_citation.tex b/biblio/test/test_gudhi_citation.tex new file mode 100644 index 00000000..5fb2d33d --- /dev/null +++ b/biblio/test/test_gudhi_citation.tex @@ -0,0 +1,7 @@ +\documentclass{article} +\usepackage{hyperref} +\bibliographystyle{plainurl} +\begin{document} +\nocite{*} +\bibliography{../how_to_cite_gudhi} +\end{document} \ No newline at end of file diff --git a/src/Doxyfile.in b/src/Doxyfile.in index 1ec190d9..d5664a49 100644 --- a/src/Doxyfile.in +++ b/src/Doxyfile.in @@ -700,7 +700,6 @@ LAYOUT_FILE = # search path. See also \cite for info how to create references. CITE_BIB_FILES = @CMAKE_SOURCE_DIR@/biblio/bibliography.bib \ - @CMAKE_SOURCE_DIR@/biblio/how_to_cite_cgal.bib \ @CMAKE_SOURCE_DIR@/biblio/how_to_cite_gudhi.bib #--------------------------------------------------------------------------- diff --git a/src/cmake/modules/GUDHI_user_version_target.cmake b/src/cmake/modules/GUDHI_user_version_target.cmake index 2144ff6f..b9bf1414 100644 --- a/src/cmake/modules/GUDHI_user_version_target.cmake +++ b/src/cmake/modules/GUDHI_user_version_target.cmake @@ -18,14 +18,17 @@ add_custom_command(TARGET user_version PRE_BUILD COMMAND ${CMAKE_COMMAND} -E string(TIMESTAMP GUDHI_VERSION_YEAR "%Y") configure_file(${CMAKE_SOURCE_DIR}/biblio/how_to_cite_gudhi.bib.in "${CMAKE_CURRENT_BINARY_DIR}/biblio/how_to_cite_gudhi.bib" @ONLY) file(COPY "${CMAKE_SOURCE_DIR}/biblio/bibliography.bib" DESTINATION "${CMAKE_CURRENT_BINARY_DIR}/biblio/") +file(COPY "${CMAKE_SOURCE_DIR}/biblio/test" DESTINATION "${CMAKE_CURRENT_BINARY_DIR}/biblio") # append cgal citation inside bibliography - sphinx cannot deal with more than one bib file file(READ "${CMAKE_SOURCE_DIR}/biblio/how_to_cite_cgal.bib" CGAL_CITATION_CONTENT) file(APPEND "${CMAKE_CURRENT_BINARY_DIR}/biblio/bibliography.bib" "${CGAL_CITATION_CONTENT}") -# Copy biblio directory for user version +# Copy biblio files for user version add_custom_command(TARGET user_version PRE_BUILD COMMAND ${CMAKE_COMMAND} -E - copy_directory ${CMAKE_CURRENT_BINARY_DIR}/biblio ${GUDHI_USER_VERSION_DIR}/biblio) + copy ${CMAKE_CURRENT_BINARY_DIR}/biblio/bibliography.bib ${GUDHI_USER_VERSION_DIR}/biblio/bibliography.bib) +add_custom_command(TARGET user_version PRE_BUILD COMMAND ${CMAKE_COMMAND} -E + copy ${CMAKE_CURRENT_BINARY_DIR}/biblio/how_to_cite_gudhi.bib ${GUDHI_USER_VERSION_DIR}/biblio/how_to_cite_gudhi.bib) add_custom_command(TARGET user_version PRE_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/README.md ${GUDHI_USER_VERSION_DIR}/README.md) -- cgit v1.2.3 From 70e9c9f7ffa426ad7fa1ab5cf1d498b00756005e Mon Sep 17 00:00:00 2001 From: Vincent Rouvreau Date: Tue, 6 Dec 2022 10:12:50 +0100 Subject: needs to add bibliography tests in CI --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.circleci/config.yml') diff --git a/.circleci/config.yml b/.circleci/config.yml index 958ec994..ef22fbea 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -324,3 +324,4 @@ workflows: - utils - python - doxygen + - bibliography -- cgit v1.2.3