File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -103,24 +103,27 @@ jobs:
103
103
- name : Configure C++11
104
104
shell : bash
105
105
run : >
106
- cmake -S . -B build
106
+ cmake -S . -B .
107
107
-DPYBIND11_WERROR=ON
108
108
-DDOWNLOAD_CATCH=ON
109
109
-DDOWNLOAD_EIGEN=ON
110
110
-DCMAKE_CXX_STANDARD=11
111
111
-DPYTHON_EXECUTABLE=$(python -c "import sys; print(sys.executable)")
112
112
113
113
- name : Build C++11
114
- run : cmake --build build -j 2
114
+ run : cmake --build . -j 2
115
115
116
116
- name : Python tests C++11
117
- run : cmake --build build --target pytest -j 2
117
+ run : cmake --build . --target pytest -j 2
118
118
119
119
- name : C++11 tests
120
- run : cmake --build build --target cpptest -j 2
120
+ run : cmake --build . --target cpptest -j 2
121
121
122
122
- name : Interface test C++11
123
- run : cmake --build build --target test_cmake_build
123
+ run : cmake --build . --target test_cmake_build
124
+
125
+ - name : Clean directory
126
+ run : git clean -fdx
124
127
125
128
- name : Configure C++${{ matrix.max-cxx-std }}
126
129
shell : bash
You can’t perform that action at this time.
0 commit comments