From 03775d2ee7915c00d9fe1080512104899a034c20 Mon Sep 17 00:00:00 2001 From: Justin Carpentier <justin.carpentier@inria.fr> Date: Fri, 26 Jan 2024 14:21:42 +0100 Subject: [PATCH] ci: activate check of SciPy support --- .github/workflows/linux.yml | 2 +- .github/workflows/macos-linux-conda.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 48a8d17a..c3c182b8 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -19,7 +19,7 @@ jobs: sudo apt-get install cmake libboost-all-dev libeigen3-dev python*-numpy python*-dev python*-scipy echo $(sudo apt list --installed) echo $(g++ --version) - - run: cmake -DPYTHON_EXECUTABLE=$(which python${{ matrix.python }}) . + - run: cmake . -DPYTHON_EXECUTABLE=$(which python${{ matrix.python }}) -DBUILD_TESTING_SCIPY=ON - run: make -j2 - run: make test diff --git a/.github/workflows/macos-linux-conda.yml b/.github/workflows/macos-linux-conda.yml index 150f10f1..f40513a5 100644 --- a/.github/workflows/macos-linux-conda.yml +++ b/.github/workflows/macos-linux-conda.yml @@ -88,6 +88,7 @@ jobs: -G "Ninja" \ -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX \ -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_TESTING_SCIPY=ON \ -DPYTHON_EXECUTABLE=$(which python3) - name: Uninstall EigenPy -- GitLab