Skip to content

Commit 7b31674

Browse files
committed
Debug
1 parent 15a40ef commit 7b31674

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/wheel_workflow.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ jobs:
7676
# github.event_name != 'schedule' ||
7777
# github.repository == 'AcademySoftwareFoundation/OpenColorIO'
7878
strategy:
79+
fail-fast: false
7980
matrix:
8081
include:
8182
# -------------------------------------------------------------------
@@ -165,6 +166,7 @@ jobs:
165166
# github.event_name != 'schedule' ||
166167
# github.repository == 'AcademySoftwareFoundation/OpenColorIO'
167168
strategy:
169+
fail-fast: false
168170
matrix:
169171
include:
170172
# -------------------------------------------------------------------
@@ -337,6 +339,7 @@ jobs:
337339
# github.event_name != 'schedule' ||
338340
# github.repository == 'AcademySoftwareFoundation/OpenColorIO'
339341
strategy:
342+
fail-fast: false
340343
matrix:
341344
include:
342345
# -------------------------------------------------------------------

share/cmake/macros/GetPythonPreCommand.cmake

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ macro(get_python_pre_command)
6262
# '\n' is here because '\\&' does not work.
6363
set(Python_PRE_CMD set ${_PATH_SET} "\n" set ${_PYTHONPATH_SET} "\n" call)
6464

65+
message(STATUS "Python pre-command: ${Python_PRE_CMD}")
66+
6567
else()
6668
# Build path list
6769
set(_PATHS
@@ -76,6 +78,8 @@ macro(get_python_pre_command)
7678
string(JOIN ":" _PYTHONPATH_VALUE ${_PATHS})
7779
set(Python_PRE_CMD "PYTHONPATH=${_PYTHONPATH_VALUE}")
7880

81+
message(STATUS "Python pre-command: ${Python_PRE_CMD}")
82+
7983
endif()
8084

8185
endmacro()

0 commit comments

Comments
 (0)