Skip to content
Snippets Groups Projects
Commit d869dda1 authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Fix CMake path

parent 1acf178d
No related branches found
No related tags found
No related merge requests found
Pipeline #31056 failed
...@@ -11,9 +11,10 @@ build:ubuntu_cpp: ...@@ -11,9 +11,10 @@ build:ubuntu_cpp:
- rm -rf build_cpp - rm -rf build_cpp
# Build current module # Build current module
- export CMAKE_PREFIX_PATH=../install_cpp
- mkdir -p build_cpp - mkdir -p build_cpp
- cd build_cpp - cd build_cpp
- cmake -DCMAKE_INSTALL_PREFIX:PATH=$INSTALL_PATH -DCMAKE_BUILD_TYPE=Debug -DWERROR=ON .. - cmake -DCMAKE_INSTALL_PREFIX:PATH=../install_cpp -DCMAKE_BUILD_TYPE=Debug -DWERROR=ON ..
- make -j4 all install - make -j4 all install
artifacts: artifacts:
...@@ -40,6 +41,7 @@ build:ubuntu_python: ...@@ -40,6 +41,7 @@ build:ubuntu_python:
- virtualenv venv - virtualenv venv
- source venv/bin/activate - source venv/bin/activate
- export AIDGE_INSTALL=`pwd`/install - export AIDGE_INSTALL=`pwd`/install
- export CMAKE_PREFIX_PATH=../install_cpp
- python3 -m pip install . - python3 -m pip install .
artifacts: artifacts:
paths: paths:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment