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 @@ -123,24 +123,27 @@ jobs:
123
123
- name : Configure C++11
124
124
shell : bash
125
125
run : >
126
- cmake -S . -B build
126
+ cmake -S . -B .
127
127
-DPYBIND11_WERROR=ON
128
128
-DDOWNLOAD_CATCH=ON
129
129
-DDOWNLOAD_EIGEN=ON
130
130
-DCMAKE_CXX_STANDARD=11
131
131
-DPYTHON_EXECUTABLE=$(python -c "import sys; print(sys.executable)")
132
132
133
133
- name : Build C++11
134
- run : cmake --build build -j 2
134
+ run : cmake --build . -j 2
135
135
136
136
- name : Python tests C++11
137
- run : cmake --build build --target pytest -j 2
137
+ run : cmake --build . --target pytest -j 2
138
138
139
139
- name : C++11 tests
140
- run : cmake --build build --target cpptest -j 2
140
+ run : cmake --build . --target cpptest -j 2
141
141
142
142
- name : Interface test C++11
143
- run : cmake --build build --target test_cmake_build
143
+ run : cmake --build . --target test_cmake_build
144
+
145
+ - name : Clean directory
146
+ run : git clean -fdx
144
147
145
148
- name : Configure C++${{ matrix.max-cxx-std }}
146
149
shell : bash
You can’t perform that action at this time.
0 commit comments