From 5c0805a2a681a13fb99daf49f98b5b4423386e89 Mon Sep 17 00:00:00 2001 From: Michael Migliore Date: Fri, 28 Jul 2023 21:21:13 +0200 Subject: [PATCH] remove exr --- .github/workflows/wheels.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 6d9c4882..d298b102 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -23,10 +23,6 @@ on: type: boolean description: 'Enable OpenCASCADE plugin' default: true - enable_exr: - type: boolean - description: 'Enable OpenEXR module' - default: true jobs: build_wheels: @@ -88,16 +84,14 @@ jobs: -DF3D_PLUGIN_BUILD_DRACO=${{ github.event.inputs.enable_draco == 'true' && 'ON' || 'OFF' }};\ -DF3D_PLUGIN_BUILD_OCCT=${{ github.event.inputs.enable_occt == 'true' && 'ON' || 'OFF' }};\ -DF3D_PLUGIN_OCCT_COLORING_SUPPORT=ON;\ - -DF3D_MODULE_EXR=${{ github.event.inputs.enable_exr == 'true' && 'ON' || 'OFF' }};\ -DF3D_MODULE_EXTERNAL_RENDERING=ON\"" CIBW_ENVIRONMENT_PASS_LINUX: > CMAKE_PREFIX_PATH SKBUILD_CMAKE_ARGS + CIBW_REPAIR_WHEEL_COMMAND: '' CIBW_BEFORE_ALL: > - echo $SKBUILD_CMAKE_ARGS && cmake -S f3d-superbuild -B f3d-superbuild-build -DCMAKE_BUILD_TYPE=Release - -DBUILD_SHARED_LIBS=OFF -DENABLE_f3d=OFF -DENABLE_alembic=${{ github.event.inputs.enable_alembic == 'true' && 'ON' || 'OFF' }} -DENABLE_assimp=${{ github.event.inputs.enable_assimp == 'true' && 'ON' || 'OFF' }}