mirror of
https://github.com/pybind/pybind11.git
synced 2026-04-19 22:39:09 +00:00
chore: cleanup
This commit is contained in:
committed by
Henry Schreiner
parent
3e448c0b5e
commit
df115977df
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
@@ -286,7 +286,10 @@ jobs:
|
||||
apt-get install -y git make cmake g++ libeigen3-dev python3-dev python3-pip python3-pytest
|
||||
|
||||
- name: Configure for install
|
||||
run: cmake -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)") -DPYBIND11_INSTALL=1 -DPYBIND11_TEST=0 .
|
||||
run: >
|
||||
cmake .
|
||||
-DPYBIND11_INSTALL=1 -DPYBIND11_TEST=0
|
||||
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
|
||||
|
||||
- name: Make and install
|
||||
run: make install
|
||||
@@ -298,7 +301,11 @@ jobs:
|
||||
run: mkdir /build-tests
|
||||
|
||||
- name: Configure tests
|
||||
run: cmake -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)") ../pybind11-tests -DPYBIND11_WERROR=ON
|
||||
run: >
|
||||
cmake ../pybind11-tests
|
||||
-DDOWNLOAD_CATCH=ON
|
||||
-DPYBIND11_WERROR=ON
|
||||
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
|
||||
working-directory: /build-tests
|
||||
|
||||
- name: Run tests
|
||||
|
||||
Reference in New Issue
Block a user