Skip to content

Fix pip install -e for daqp-python when run from outside the package directory #200

Fix pip install -e for daqp-python when run from outside the package directory

Fix pip install -e for daqp-python when run from outside the package directory #200

Workflow file for this run

name: Eigen CI
on:
push:
branches: ["master"]
paths-ignore:
- "docs/**"
pull_request:
branches: ["master"]
paths-ignore:
- "docs/**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
build_type: [Debug, Release]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y cmake ninja-build libeigen3-dev
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DTEST=ON -DEIGEN=ON
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}}
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -V -C ${{matrix.build_type}}