Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/build_wheels_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ on:
description: 'Timeout for the job (in minutes)'
default: 60
type: number
build-command:
description: The build command to use if build-platform is python-build-package
required: false
default: "python setup.py bdist_wheel"
type: string
architecture:
description: 'CPU architecture to build for'
default: "x64"
Expand Down Expand Up @@ -270,9 +275,9 @@ jobs:
run: |
source "${BUILD_ENV_FILE}"
if [[ -z "${ENV_SCRIPT}" ]]; then
${CONDA_RUN} python setup.py bdist_wheel
${CONDA_RUN} ${{ inputs.build-command }}
else
${CONDA_RUN} ${ENV_SCRIPT} python setup.py bdist_wheel ${BUILD_PARAMS}
${CONDA_RUN} ${ENV_SCRIPT} ${{ inputs.build-command }} ${BUILD_PARAMS}
fi
- name: Build the wheel (bdist_wheel) Arm64
if: inputs.architecture == 'arm64'
Expand Down