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

Auto-build wheels on pushes / merges #16

Open
xileF1337 opened this issue Apr 16, 2020 · 2 comments
Open

Auto-build wheels on pushes / merges #16

xileF1337 opened this issue Apr 16, 2020 · 2 comments
Assignees
Labels
enhancement New feature or request

Comments

@xileF1337
Copy link
Collaborator

Via Github Actions, it should be easy to implement a basic continuous integration workflow that builds wheels of clonepool. This would allow the user to simply download clonepool in a single file without having to mess with the Git repo at all.

@xileF1337 xileF1337 added the enhancement New feature or request label Apr 16, 2020
@phiweger
Copy link
Owner

@replikation is an expert on how to set this up ;)

@replikation
Copy link
Collaborator

TLDR:

create a new branch for testing.
inside clonepool main git-dir do mkdir -p .github/workflows
and touch .github/workflows/wheelpush.yml

wheelpush.yml
should/can look like this:

name: create_wheel

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - name: creat_a_whell
      run: pip blalba && python blabla

you add the commands behind run: to build and push you wheel
you can create multiple commands:

 - name: step1
        run: |
           command 1
 - name: step 2
        run: |
           command2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants