From d01320560dc2a979ff78bf55477f411ff2dc525e Mon Sep 17 00:00:00 2001 From: "alessandro.molina" Date: Sat, 9 Apr 2022 12:10:58 -0400 Subject: [PATCH] Add build wheels --- .github/workflows/build-wheels.yml | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/build-wheels.yml diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml new file mode 100644 index 0000000..8231b84 --- /dev/null +++ b/.github/workflows/build-wheels.yml @@ -0,0 +1,34 @@ +name: Build Wheels + +on: + push: + # Pattern matched against refs/tags + tags: + - '*' + +jobs: + build_wheels: + name: Build wheels on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-20.04, windows-2019, macOS-10.15] + + steps: + - uses: actions/checkout@v2 + + # Used to host cibuildwheel + - uses: actions/setup-python@v2 + + - name: Install cibuildwheel + run: python -m pip install cibuildwheel==2.4.0 + + - name: Build wheels + run: python -m cibuildwheel --output-dir wheelhouse + # to supply options, put them in 'env', like: + # env: + # CIBW_SOME_OPTION: value + + - uses: actions/upload-artifact@v2 + with: + path: ./wheelhouse/*.whl \ No newline at end of file