Skip to content

Commit

Permalink
Merge branch 'master' of github.com:beizhansl/pyquafu into zsl
Browse files Browse the repository at this point in the history
  • Loading branch information
beizhansl committed Sep 15, 2023
2 parents 45d7f02 + 5dd760d commit dd0886e
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Build

on:
push:
branches:
- "master"
tags:
- "v*"
pull_request:
pull_request_review:
types: [submitted, edited]
workflow_dispatch:



jobs:
build_wheels:
name: Build python wheels
strategy:
matrix:
os-arch: ["manylinux_x86_64", "win_amd64", "macosx_x86_64", "macosx_arm64"]
python-version: ["3.10"]
cibw-python: ["cp38", "cp39", "cp310","cp311"]
include:
- os-arch: "manylinux_x86_64"
os: "ubuntu-20.04"
- os-arch: "win_amd64"
os: "windows-2019"
- os-arch: "macosx_x86_64"
os: "macos-11"
- os-arch: "macosx_arm64"
os: "macos-11"
runs-on: ${{ matrix.os }}

env:
CIBW_BUILD: ${{ matrix.cibw-python }}-${{ matrix.os-arch }}
PYTHON: ${{ matrix.python-version }}
TWINE_USERNAME: "__token__"

steps:
- uses: actions/checkout@v3

# Used to host cibuildwheel
- uses: actions/setup-python@v3
- name: Install dependence
run: python -m pip install pybind11 cibuildwheel scikit-build twine pytest

- name: Build wheels
run: python -m cibuildwheel --output-dir dist

- name: Run unit tests
run: pip install . && pytest tests/

- name: Publish package
run: python -m twine upload dist/*.whl
if: ${{ contains(github.ref, '/tags/') }}
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}

0 comments on commit dd0886e

Please sign in to comment.