From b1e1e86e4545f12e180fd1e9d5f9681b87a89363 Mon Sep 17 00:00:00 2001 From: Jagdeep Bhatia Date: Sat, 15 Jun 2024 16:11:42 -0400 Subject: [PATCH] Auto build script --- .github/workflows/wheels.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/wheels.yml diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml new file mode 100644 index 00000000..65dd6fbd --- /dev/null +++ b/.github/workflows/wheels.yml @@ -0,0 +1,35 @@ +name: Build + +on: [push, pull_request] + +jobs: + build_wheels: + name: Build wheels on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-13, macos-14] + # python: [3.7, 3.8, 3.9, 3.10] + python: [3.7] + + steps: + - uses: actions/checkout@v4 + with: + submodules: true + + # Used to host cibuildwheel + - uses: actions/setup-python@v5 + + - name: Install cibuildwheel + run: python -m pip install cibuildwheel==2.19.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@v4 + with: + name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} + path: ./wheelhouse/*.whl \ No newline at end of file