@@ -100,7 +100,7 @@ jobs:
100
100
run : >
101
101
cmake -S . -B .
102
102
-DPYBIND11_WERROR=ON
103
- -DDOWNLOAD_CATCH=OFF
103
+ -DDOWNLOAD_CATCH=ON
104
104
-DDOWNLOAD_EIGEN=ON
105
105
-DCMAKE_CXX_STANDARD=11
106
106
${{ matrix.args }}
@@ -111,10 +111,10 @@ jobs:
111
111
- name : Python tests C++11
112
112
run : cmake --build . --target pytest -j 2
113
113
114
- # - name: C++11 tests
115
- # # TODO: Figure out how to load the DLL on Python 3.8+
116
- # if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 || matrix.python == '3.10-dev'))"
117
- # run: cmake --build . --target cpptest -j 2
114
+ - name : C++11 tests
115
+ # TODO: Figure out how to load the DLL on Python 3.8+
116
+ if : " !(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 || matrix.python == '3.10-dev'))"
117
+ run : cmake --build . --target cpptest -j 2
118
118
119
119
- name : Interface test C++11
120
120
run : cmake --build . --target test_cmake_build
@@ -127,7 +127,7 @@ jobs:
127
127
run : >
128
128
cmake -S . -B build2
129
129
-DPYBIND11_WERROR=ON
130
- -DDOWNLOAD_CATCH=OFF
130
+ -DDOWNLOAD_CATCH=ON
131
131
-DDOWNLOAD_EIGEN=ON
132
132
-DCMAKE_CXX_STANDARD=17
133
133
${{ matrix.args }}
@@ -139,10 +139,10 @@ jobs:
139
139
- name : Python tests
140
140
run : cmake --build build2 --target pytest
141
141
142
- # - name: C++ tests
143
- # # TODO: Figure out how to load the DLL on Python 3.8+
144
- # if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 || matrix.python == '3.10-dev'))"
145
- # run: cmake --build build2 --target cpptest
142
+ - name : C++ tests
143
+ # TODO: Figure out how to load the DLL on Python 3.8+
144
+ if : " !(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 || matrix.python == '3.10-dev'))"
145
+ run : cmake --build build2 --target cpptest
146
146
147
147
- name : Interface test
148
148
run : cmake --build build2 --target test_cmake_build
@@ -754,7 +754,7 @@ jobs:
754
754
cmake -S . -B build
755
755
-G "Visual Studio 16 2019" -A Win32
756
756
-DPYBIND11_WERROR=ON
757
- -DDOWNLOAD_CATCH=OFF
757
+ -DDOWNLOAD_CATCH=ON
758
758
-DDOWNLOAD_EIGEN=ON
759
759
${{ matrix.args }}
760
760
- name : Build C++11
@@ -800,7 +800,7 @@ jobs:
800
800
cmake -S . -B build
801
801
-G "Visual Studio 14 2015" -A x64
802
802
-DPYBIND11_WERROR=ON
803
- -DDOWNLOAD_CATCH=OFF
803
+ -DDOWNLOAD_CATCH=ON
804
804
-DDOWNLOAD_EIGEN=ON
805
805
806
806
- name : Build C++14
@@ -849,7 +849,7 @@ jobs:
849
849
cmake -S . -B build
850
850
-G "Visual Studio 15 2017" -A x64
851
851
-DPYBIND11_WERROR=ON
852
- -DDOWNLOAD_CATCH=OFF
852
+ -DDOWNLOAD_CATCH=ON
853
853
-DDOWNLOAD_EIGEN=ON
854
854
-DCMAKE_CXX_STANDARD=${{ matrix.std }}
855
855
${{ matrix.args }}
0 commit comments