-
Notifications
You must be signed in to change notification settings - Fork 19
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
fix: wheel for windows #111
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
name: Wheel builder | ||
|
||
on: | ||
pull_request: | ||
push: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_wheels: | ||
|
||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
|
||
name: Build wheel ${{ matrix.python[0] }}-${{ matrix.buildplat[0] }} | ||
runs-on: ${{ matrix.buildplat[0] }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
buildplat: | ||
- [ubuntu-latest, manylinux_x86_64] | ||
- [macos-13, macosx_x86_64] | ||
- [macos-14, macosx_arm64] | ||
- [windows-latest, win_amd64] | ||
python: | ||
- ["3.11", "cp311"] | ||
- ["3.12", "cp312"] | ||
|
||
steps: | ||
- name: Check out #${{ inputs.project }} | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python ${{ matrix.python[0] }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python[0] }} | ||
|
||
- name: Build wheels for Linux | ||
if: runner.os == 'Linux' | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: ${{ matrix.python[1] }}-${{ matrix.buildplat[1] }} | ||
CIBW_BEFORE_BUILD: yum install -y gsl-devel && pip install -e . | ||
with: | ||
output-dir: wheelhouse | ||
|
||
- name: Build wheels for macOS | ||
if: runner.os == 'macOS' | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: ${{ matrix.python[1] }}-${{ matrix.buildplat[1] }} | ||
MACOSX_DEPLOYMENT_TARGET: 13.0 | ||
CIBW_BEFORE_BUILD: brew install gsl && pip install -e . | ||
with: | ||
output-dir: wheelhouse | ||
|
||
- name: Set up conda for Windows | ||
if: runner.os == 'Windows' | ||
uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
activate-environment: gsl | ||
auto-update-conda: true | ||
environment-file: environment.yml | ||
auto-activate-base: false | ||
|
||
- name: install gsl for Windows | ||
if: runner.os == 'Windows' | ||
run: | | ||
conda config --set always_yes yes --set changeps1 no | ||
conda install gsl | ||
|
||
- name: Build wheels for Windows | ||
if: runner.os == 'Windows' | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: ${{ matrix.python[1] }}-${{ matrix.buildplat[1] }} | ||
CONDA_PREFIX: ${{ env.CONDA_PREFIX }} | ||
with: | ||
output-dir: wheelhouse | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ matrix.python[0] }}-${{ matrix.buildplat[0] }} | ||
path: ./wheelhouse/*.whl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shall we do just
pull_request
andpush
into main? I think that is our standard on our other workflowsThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sbillinge I'll delete this workflow file before merging. This is just for showing the changes work here, and it would be easier for @bobleesj to copy to the central
release-script
. So details shouldn't matter too much.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Tieqiong Billingegroup/release-scripts#123
I copied and saved in the issue. pls confirm if that's all good.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bobleesj please see comment there
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As a general rule I like taking care of details when we think of them, otherwise technical debt tends to just start piling up. But if this is going to be completely gone through again later and everything fixed, i htink it is ok to let things slide here.