Skip to content

Commit 6abc642

Browse files
committed
Set env: VERBOSE: 1 as suggested by @henryiii
1 parent 5136cb5 commit 6abc642

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ env:
1717
PIP_ONLY_BINARY: numpy
1818
FORCE_COLOR: 3
1919
PYTEST_TIMEOUT: 300
20+
# For cmake:
21+
VERBOSE: 1
2022

2123
jobs:
2224
# This is the "main" test suite, which tests a large number of different
@@ -918,7 +920,7 @@ jobs:
918920
- name: Configure C++11
919921
# LTO leads to many undefined reference like
920922
# `pybind11::detail::function_call::function_call(pybind11::detail::function_call&&)
921-
run: cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=11 -DCMAKE_VERBOSE_MAKEFILE=ON -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON -S . -B build
923+
run: cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=11 -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON -S . -B build
922924

923925
- name: Build C++11
924926
run: cmake --build build -j 2
@@ -936,7 +938,7 @@ jobs:
936938
run: git clean -fdx
937939

938940
- name: Configure C++14
939-
run: cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=14 -DCMAKE_VERBOSE_MAKEFILE=ON -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON -S . -B build2
941+
run: cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=14 -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON -S . -B build2
940942

941943
- name: Build C++14
942944
run: cmake --build build2 -j 2
@@ -954,7 +956,7 @@ jobs:
954956
run: git clean -fdx
955957

956958
- name: Configure C++17
957-
run: cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=17 -DCMAKE_VERBOSE_MAKEFILE=ON -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON -S . -B build3
959+
run: cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=17 -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON -S . -B build3
958960

959961
- name: Build C++17
960962
run: cmake --build build3 -j 2
@@ -1015,7 +1017,6 @@ jobs:
10151017
- name: Configure Clang
10161018
run: >
10171019
cmake -G Ninja -S . -B .
1018-
-DCMAKE_VERBOSE_MAKEFILE=ON
10191020
-DPYBIND11_WERROR=OFF
10201021
-DPYBIND11_SIMPLE_GIL_MANAGEMENT=OFF
10211022
-DDOWNLOAD_CATCH=ON
@@ -1081,7 +1082,6 @@ jobs:
10811082
- name: CMake Configure
10821083
run: >
10831084
cmake -S . -B .
1084-
-DCMAKE_VERBOSE_MAKEFILE=ON
10851085
-DPYBIND11_WERROR=ON
10861086
-DPYBIND11_SIMPLE_GIL_MANAGEMENT=OFF
10871087
-DDOWNLOAD_CATCH=ON

0 commit comments

Comments
 (0)