cChardet/.github/workflows/build-darwin.yml

77 lines
1.6 KiB
YAML
Raw Normal View History

2020-03-16 15:03:21 +00:00
name: Build for macOS
on:
- push
- pull_request
jobs:
build_wheels:
name: Build wheel on macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
2020-10-07 09:56:06 +00:00
- uses: actions/setup-python@v2
name: Install Python 3.9
with:
python-version: "3.9"
2020-03-16 15:03:21 +00:00
- uses: actions/setup-python@v1
name: Install Python 3.8
with:
python-version: "3.8"
- uses: actions/setup-python@v1
name: Install Python 3.7
with:
python-version: "3.7"
- uses: actions/setup-python@v1
name: Install Python 3.6
with:
python-version: "3.6"
- name: Install cibuildwheel
run: |
2020-10-28 09:59:28 +00:00
python -m pip install cibuildwheel==1.6.3
2020-03-16 15:03:21 +00:00
- name: Checkout submodules
shell: bash
run: |
git submodule sync --recursive
git submodule update --init --force --recursive --depth=1
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
2020-10-07 09:56:06 +00:00
- name: Test for Python 3.9
run: |
tox -e py39
2020-03-16 15:03:21 +00:00
- name: Test for Python 3.8
run: |
tox -e py38
- name: Test for Python 3.7
run: |
tox -e py37
- name: Test for Python 3.6
run: |
tox -e py36
- name: Build wheel
if: contains(github.ref, 'tags/')
run: |
python -m cibuildwheel --output-dir wheelhouse
env:
2020-10-28 09:50:18 +00:00
CIBW_BUILD: cp36-* cp37-* cp38-* cp39-*
2020-03-16 15:03:21 +00:00
- uses: actions/upload-artifact@v1
if: contains(github.ref, 'tags/')
with:
name: wheels
path: ./wheelhouse