Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add inputs.delocate-wheel to build_wheels_macos.yaml #5107

Merged
merged 1 commit into from
Apr 20, 2024
Merged
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
7 changes: 7 additions & 0 deletions .github/workflows/build_wheels_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ on:
required: false
type: string
default: recursive
delocate-wheel:
description: "Whether to run delocate-wheel after building."
required: false
type: boolean
default: true

permissions:
id-token: write
Expand Down Expand Up @@ -121,6 +126,7 @@ jobs:
run: |
cat "${{ inputs.env-var-script }}" >> "${BUILD_ENV_FILE}"
- name: Install delocate-wheel
if: ${{ inputs.delocate-wheel }}
run: |
set -euxo pipefail
${CONDA_RUN} python3 -m pip install delocate==0.10.7
Expand Down Expand Up @@ -161,6 +167,7 @@ jobs:

${CONDA_RUN} python3 setup.py bdist_wheel
- name: Delocate wheel
if: ${{ inputs.delocate-wheel }}
working-directory: ${{ inputs.repository }}
run: |
set -euxo pipefail
Expand Down
Loading