We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92728a4 commit cad73a3Copy full SHA for cad73a3
.github/workflows/macos.yml
@@ -20,7 +20,11 @@ jobs:
20
21
- run: pdm run check-installation
22
23
- - run: curl https://sshx.io/get | sh -s run
+ # Without this, future build steps fail in CMake.
24
+ - name: Add nanobind to CMake
25
+ run: |
26
+ nanobind_dir=$(pdm run python -c 'import nanobind, os; print(os.path.join(nanobind.__path__[0], "cmake"))')
27
+ echo "nanobind_DIR=${nanobind_dir}" >> $GITHUB_ENV
28
29
- name: Try building extensions
30
run: |
0 commit comments