diff --git a/.github/workflows/release_wheel_creation.yml b/.github/workflows/release_wheel_creation.yml index c12a0dfd7c7..3961a3efda8 100644 --- a/.github/workflows/release_wheel_creation.yml +++ b/.github/workflows/release_wheel_creation.yml @@ -66,7 +66,7 @@ jobs: CIBW_ARCHS_WINDOWS: "AMD64 ARM64" CIBW_BUILD: ${{ matrix.wheel-version }} CIBW_SKIP: "*-musllinux*" - CIBW_BUILD_VERBOSITY: 3 + CIBW_BUILD_VERBOSITY: 2 CIBW_BEFORE_ALL_MACOS: echo '[build-system]\n\nrequires = [ "cython", "pybind11", "setuptools", "wheel" ]' > /Users/runner/work/pyomo/pyomo/pyproject.toml && cat /Users/runner/work/pyomo/pyomo/pyproject.toml CIBW_BEFORE_ALL_LINUX: echo -e '[build-system]\n\nrequires = [ "cython", "pybind11", "setuptools", "wheel" ]' > /Users/runner/work/pyomo/pyomo/pyproject.toml && cat /Users/runner/work/pyomo/pyomo/pyproject.toml CIBW_ENVIRONMENT: PYOMO_SETUP_ARGS="${{ matrix.GLOBAL_OPTIONS }}" @@ -119,7 +119,7 @@ jobs: CIBW_ARCHS_LINUX: "aarch64" CIBW_BUILD: ${{ matrix.wheel-version }} CIBW_SKIP: "*-musllinux*" - CIBW_BUILD_VERBOSITY: 3 + CIBW_BUILD_VERBOSITY: 2 CIBW_BEFORE_ALL_LINUX: echo -e '[build-system]\n\nrequires = [ "cython", "pybind11", "setuptools", "wheel" ]' > /Users/runner/work/pyomo/pyomo/pyproject.toml && cat /Users/runner/work/pyomo/pyomo/pyproject.toml CIBW_ENVIRONMENT: PYOMO_SETUP_ARGS="${{ matrix.GLOBAL_OPTIONS }}" - uses: actions/upload-artifact@v4