github: now on to CPU CI failures

This commit is contained in:
Matt Pharr 2026-05-16 06:08:41 -07:00
parent 2606a2b351
commit 0575eaff52
2 changed files with 3 additions and 1 deletions

View file

@ -68,7 +68,7 @@ jobs:
env CC=${{ matrix.compilers.cc }} CXX=${{ matrix.compilers.cxx }} cmake .. -DPBRT_USE_PREGENERATED_RGB_TO_SPECTRUM_TABLES=True ${{ matrix.config }} env CC=${{ matrix.compilers.cc }} CXX=${{ matrix.compilers.cxx }} cmake .. -DPBRT_USE_PREGENERATED_RGB_TO_SPECTRUM_TABLES=True ${{ matrix.config }}
- name: Build - name: Build
run: cmake --build build --parallel --config Release run: cmake --build build --parallel 3 --config Release
- name: Test - name: Test
if: ${{ matrix.config == '' }} if: ${{ matrix.config == '' }}

View file

@ -111,6 +111,8 @@ if (OPENEXR_FOUND)
message (STATUS "Found OpenEXR version ${OPENEXR_VERSION}") message (STATUS "Found OpenEXR version ${OPENEXR_VERSION}")
else () else ()
message (STATUS "OpenEXR not found; building it from scratch.") message (STATUS "OpenEXR not found; building it from scratch.")
set (OPENEXR_BUILD_TOOLS OFF CACHE BOOL "" FORCE)
set (OPENEXR_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
add_subdirectory (src/ext/openexr) add_subdirectory (src/ext/openexr)
set_property (TARGET IlmThread Iex OpenEXR set_property (TARGET IlmThread Iex OpenEXR
PROPERTY FOLDER "ext/OpenEXR") PROPERTY FOLDER "ext/OpenEXR")