From 620c9b8c909cb0e135f46e65b8707420cbe393cf Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Thu, 28 Mar 2024 14:13:45 +0000 Subject: [PATCH] install cmake --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6c7fa7f..dcb7bfa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,6 +32,7 @@ jobs: name: build run: | conda activate "${{ steps.reqs.outputs.envname }}" + which cmake || conda install -yq cmake cmake -S . -B ./build_proj -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_MATLAB_WRAPPER=OFF -DBUILD_PYTHON_WRAPPER=ON -DBUILD_CUDA=ON -DCMAKE_INSTALL_PREFIX=./install cmake --build ./build_proj --target install pip install ./src/Python