From e85e1368cb9dade3b48497620ac2c3a3825cf0af Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Wed, 22 Nov 2023 10:06:18 +0100 Subject: [PATCH] jrl: check version is not 0.0 --- .github/workflows/jrl-cmakemodules.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/jrl-cmakemodules.yml b/.github/workflows/jrl-cmakemodules.yml index 563bf3d7d..5c49b2ef5 100644 --- a/.github/workflows/jrl-cmakemodules.yml +++ b/.github/workflows/jrl-cmakemodules.yml @@ -20,5 +20,7 @@ jobs: - uses: actions/checkout@v3 with: submodules: false + path: eigenpy - run: sudo apt install libboost-all-dev libeigen3-dev python3-numpy - - run: cmake . + - run: cmake -B build -S eigenpy + - run: grep -qv CMAKE_PROJECT_VERSION:STATIC=0.0 build/CMakeCache.txt