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

Enable wheels for 32/64 architecture #184

Merged
merged 6 commits into from
May 27, 2021
Merged
Changes from 1 commit
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
13 changes: 12 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
# Workflow to build and test wheels
# =================================
# This github action gets triggered whenever there
# is a push to the master branch. It generates both
# wheels and distributions files, making sure their
# contents are correct via unit-testing.
#
# However, artifacts are only uploaded to a release
# here: https://github.com/automl/ConfigSpace/releases
# When a release tag is created. For example, if
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, could you please be more specific here? In particular, does it have to be a release (I think that's github nomenclature) or a tag (that's git nomenclature)? I think it would also be good if you could briefly add the steps that are required to be done from the command line.

# a release is tagged with the tag v0.N.MM, this workflow
# will get triggered, and release assets (wheels and dist)
# will be appended to the release notes.
name: Wheel builder

on:
push:
branches:
- master
- wheels
# Release branches
- "[0-9]+.[0-9]+.X"
create:
Expand Down