Skip to content

Commit

Permalink
Add github actions to build wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
1yefuwang1 committed Jun 14, 2024
1 parent 8a11396 commit 2e53d92
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build-wheel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build wheels

on: [workflow_dispatch]

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]

steps:
- uses: actions/checkout@v4
with:
submodules: true

# Used to host cibuildwheel
- uses: actions/setup-python@v5

- name: Bootstrap vcpkg
run: python bootstrap_vcpkg.py

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.19.1

- 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
10 changes: 10 additions & 0 deletions bootstrap_vcpkg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import platform
import subprocess
import os

system = platform.system().lower()

if system == 'windows':
subprocess.run([os.path.join('vcpkg', 'bootstrap-vcpkg.bat')], check=True)
else:
subprocess.run([os.path.join('vcpkg', './bootstrap-vcpkg.sh')], check=True)

0 comments on commit 2e53d92

Please sign in to comment.