Skip to content

Commit

Permalink
Fix based on pybind/pybind11#1379
Browse files Browse the repository at this point in the history
  • Loading branch information
benemer committed Sep 19, 2024
1 parent 824b128 commit bcc0655
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
uses: jwlawson/actions-setup-cmake@v1.13
with:
cmake-version: "3.25.x"
- name: Install pybind
run: python3 -m pip install pybind11[global]
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} ${{github.workspace}}/src/mapmos/pybind
- name: Build
Expand Down Expand Up @@ -49,8 +51,9 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake git libeigen3-dev libtbb-dev python3-pip
pip3 install pybind11
sudo apt-get install -y build-essential cmake git libeigen3-dev libtbb-dev
- name: Install pybind
run: python3 -m pip install pybind11[global]
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} ${{github.workspace}}/src/mapmos/pybind
- name: Build
Expand Down

0 comments on commit bcc0655

Please sign in to comment.