summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2021-07-06 14:01:46 -0700
committerBob Ippolito <bob@redivi.com>2021-07-09 16:07:50 -0700
commit949aeefd17eea3f597bf549af43d007381cc077d (patch)
tree1c7928fddf0202628968605164542a055bd599a0 /.github
parent8bef979ad8272cbc2903970f4b9992f603d50973 (diff)
downloadsimplejson-949aeefd17eea3f597bf549af43d007381cc077d.tar.gz
Replace travis and appveyor with github actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-and-deploy.yml114
1 files changed, 114 insertions, 0 deletions
diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml
new file mode 100644
index 0000000..b3cf183
--- /dev/null
+++ b/.github/workflows/build-and-deploy.yml
@@ -0,0 +1,114 @@
+name: Build and upload to PyPI
+
+# Build on every branch push, tag push, and pull request change:
+on: [push, pull_request]
+# Alternatively, to publish when a (published) GitHub Release is created, use the following:
+# on:
+# push:
+# pull_request:
+# release:
+# types:
+# - published
+
+jobs:
+ build_wheels:
+ name: Build wheels on ${{ matrix.os }}
+ runs-on: ${{ matrix.os }}
+ strategy:
+ fail-fast: false
+ matrix:
+ os:
+ - 'ubuntu-latest'
+ - 'windows-latest'
+ - 'macos-latest'
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Set up QEMU
+ if: runner.os == 'Linux'
+ uses: docker/setup-qemu-action@v1
+ with:
+ platforms: all
+
+ - name: Build wheels
+ uses: pypa/cibuildwheel@v2.0.0a4
+ env:
+ CIBW_TEST_COMMAND: >-
+ python -m simplejson.tests._cibw_runner "{project}"
+ CIBW_SKIP: "pp*"
+ CIBW_ARCHS_WINDOWS: "auto"
+ CIBW_ARCHS_LINUX: "auto aarch64"
+ CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
+
+ - name: Build Python 2.7 wheels
+ if: runner.os != 'Windows'
+ uses: pypa/cibuildwheel@v1.12.0
+ env:
+ CIBW_TEST_COMMAND: >-
+ python -m simplejson.tests._cibw_runner "{project}"
+ CIBW_BUILD: "cp27-*"
+ CIBW_SKIP: "pp*"
+ CIBW_ARCHS_LINUX: "auto aarch64"
+
+ - uses: actions/upload-artifact@v2
+ if: "github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')"
+ with:
+ path: ./wheelhouse/*.whl
+
+ build_sdist:
+ name: Build source distribution
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+
+ - uses: actions/setup-python@v2
+ name: Install Python
+ with:
+ python-version: '3.9'
+
+ - name: Build sdist
+ run: python setup.py sdist
+
+ - uses: actions/upload-artifact@v2
+ if: "github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')"
+ with:
+ path: dist/*.tar.gz
+
+ upload_pypi:
+ needs: [build_wheels, build_sdist]
+ runs-on: ubuntu-latest
+ # upload to PyPI on every tag starting with 'v'
+ if: "github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')"
+ # alternatively, to publish when a GitHub Release is created, use the following rule:
+ # if: github.event_name == 'release' && github.event.action == 'published'
+ steps:
+ - uses: actions/download-artifact@v2
+ with:
+ name: artifact
+ path: dist
+
+ - uses: pypa/gh-action-pypi-publish@v1.4.2
+ with:
+ user: __token__
+ password: ${{ secrets.PYPI_PASSWORD }}
+ # To test: repository_url: https://test.pypi.org/legacy/
+
+ upload_pypi_test:
+ needs: [build_wheels, build_sdist]
+ runs-on: ubuntu-latest
+ # upload to PyPI on every tag starting with 'v'
+ if: "github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/test-v')"
+ # alternatively, to publish when a GitHub Release is created, use the following rule:
+ # if: github.event_name == 'release' && github.event.action == 'published'
+ steps:
+ - uses: actions/download-artifact@v2
+ with:
+ name: artifact
+ path: dist
+
+ - uses: pypa/gh-action-pypi-publish@v1.4.2
+ with:
+ user: __token__
+ password: ${{ secrets.PYPI_PASSWORD_TEST }}
+ repository_url: https://test.pypi.org/legacy/