Skip to content

Commit

Permalink
Updates GH Actions runner to install Pybind11 correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
ilumsden committed Sep 12, 2024
1 parent 963aea9 commit 6c7764b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,16 @@ jobs:

steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'

- name: Install dependencies
run: sudo apt-get install libdw-dev libunwind-dev gfortran
run: |
sudo apt-get install libdw-dev libunwind-dev gfortran python-pybind11
python3 -m pip install pybind11
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
Expand Down

0 comments on commit 6c7764b

Please sign in to comment.