diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6f6ea3d9..77607baca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -566,7 +566,7 @@ jobs: windows: - if: ${{ ! contains(github.ref, 'linux-only') && ! contains(github.ref, 'macos-only') && ! contains(github.ref, 'optix-only') }} + if: ${{ (github.event.repository.fork == false || github.event_name != 'schedule') && ! contains(github.ref, 'linux-only') && ! contains(github.ref, 'macos-only') && ! contains(github.ref, 'optix-only') }} name: "${{matrix.desc}}" uses: ./.github/workflows/build-steps.yml with: diff --git a/src/build-scripts/build_openexr.bash b/src/build-scripts/build_openexr.bash index 06d66fa90..c1b53928a 100755 --- a/src/build-scripts/build_openexr.bash +++ b/src/build-scripts/build_openexr.bash @@ -46,7 +46,7 @@ cmake -S ${OPENEXR_SOURCE_DIR} -B ${OPENEXR_BUILD_DIR} \ -DCMAKE_INSTALL_PREFIX="${OPENEXR_INSTALL_DIR}" \ -DCMAKE_PREFIX_PATH="${CMAKE_PREFIX_PATH}" \ -DBUILD_SHARED_LIBS=${OpenEXR_LOCAL_BUILD_SHARED_LIBS:=ON} \ - -DOPENEXR_BUILD_UTILS=0 \ + -DOPENEXR_BUILD_TOOLS=0 \ -DBUILD_TESTING=0 \ -DOPENEXR_VIEWERS_ENABLE=0 \ -DINSTALL_OPENEXR_EXAMPLES=0 \