-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
29 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,49 +20,28 @@ jobs: | |
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
# we need fetch-depth 0 so setuptools_scm can resolve tags | ||
|
||
- uses: actions/setup-python@v2 | ||
name: Install Python | ||
with: | ||
python-version: '3.8' | ||
|
||
- name: Test for secrets access | ||
id: check_secrets | ||
shell: bash | ||
run: | | ||
unset HAS_SECRET | ||
if [ -n "$SECRET" ]; then HAS_SECRET='true' ; fi | ||
echo ::set-output name=HAS_SECRET::${HAS_SECRET} | ||
env: | ||
SECRET: "${{ secrets.test_pypi_password }}" | ||
|
||
- name: Install cibuildwheel | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install cibuildwheel==1.8.0 | ||
- name: Lint source with flake8 | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install flake8 | ||
flake8 tests setup.py | ||
# - name: Lint source with mypy | ||
# run: | | ||
# pip install mypy | ||
# mypy --config-file mypi.ini setup.py tests | ||
|
||
- name: Build source distribution with Ubuntu | ||
if: startsWith(matrix.os, 'ubuntu') | ||
run: | | ||
pip install build | ||
python -m build --sdist --outdir dist . | ||
- name: Build wheel and test | ||
run: | | ||
python -m cibuildwheel --output-dir dist | ||
- name: Build ${{ matrix.os }} wheels and test | ||
uses: joerick/[email protected] | ||
with: | ||
output-dir: dist | ||
env: | ||
# build just python 3.7 | ||
CIBW_BUILD: cp37-* cp38-* cp39-* | ||
|
@@ -74,6 +53,9 @@ jobs: | |
CIBW_BEFORE_BUILD_LINUX: > | ||
python -m pip install --upgrade pip | ||
&& pip install pybind11 | ||
# CIBW_ARCHS_MACOS: x86_64 arm64 universal2 | ||
CIBW_ARCHS_MACOS: x86_64 universal2 | ||
CIBW_TEST_SKIP: '*_arm64 *_universal2:arm64' | ||
CIBW_BEFORE_ALL_MACOS: > | ||
brew install boost | ||
CIBW_BEFORE_BUILD_MACOS: > | ||
|
@@ -93,6 +75,16 @@ jobs: | |
name: wheels | ||
path: ./dist | ||
|
||
- name: Test for secrets access | ||
id: check_secrets | ||
shell: bash | ||
run: | | ||
unset HAS_SECRET | ||
if [ -n "$SECRET" ]; then HAS_SECRET='true' ; fi | ||
echo ::set-output name=HAS_SECRET::${HAS_SECRET} | ||
env: | ||
SECRET: "${{ secrets.test_pypi_password }}" | ||
|
||
- name: Install twine | ||
run: pip install twine | ||
|
||
|