Skip to content

Commit 445184a

Browse files
committed
temp: real fix for debug print??
1 parent c61f200 commit 445184a

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,14 @@ jobs:
572572
b2 -j3 --prefix=%GITHUB_WORKSPACE%\..\.local --with-${{matrix.lib}} ${{matrix.bopts}}
573573
if "${{matrix.dump_generated_cmake}}" == "1" dir %GITHUB_WORKSPACE%\..\.local\lib\cmake
574574
if "${{matrix.dump_generated_cmake}}" == "1" dir /s %GITHUB_WORKSPACE%\..\.local\lib\cmake\boost_${{matrix.lib}}-*
575-
if "${{matrix.dump_generated_cmake}}" == "1" for /r %GITHUB_WORKSPACE%\..\.local\lib\cmake\boost_${{matrix.lib}}-* %%f in (*.cmake) do @echo ===== %%f ===== & type "%%f"
575+
if "${{matrix.dump_generated_cmake}}" == "1" for /d %%d in (%GITHUB_WORKSPACE%\..\.local\lib\cmake\boost_${{matrix.lib}}-*) do (
576+
@echo ===== %%d =====
577+
dir "%%d"
578+
for %%f in ("%%d\*.cmake") do (
579+
@echo ===== %%~ff =====
580+
type "%%~ff"
581+
)
582+
)
576583
cd tools\boost_install\test\${{matrix.lib}}
577584
mkdir __build__ && cd __build__
578585
cmake -DCMAKE_INSTALL_PREFIX=%GITHUB_WORKSPACE%\..\.local -DUSE_BOOST_PACKAGE=1 -DBoost_VERBOSE=ON ${{matrix.copts}} ..

0 commit comments

Comments
 (0)