minify-html/.github/workflows/python.yml

90 lines
2.9 KiB
YAML
Raw Normal View History

name: Build and publish Python package
on:
create:
tags:
- 'v*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- os: ubuntu-latest
ARCH: linux-x86_64
LIBFILE: 'libhyperbuild_python_lib.so'
PYEXT: 'so'
- os: windows-latest
ARCH: windows-x86_64
LIBFILE: 'hyperbuild_python_lib.dll'
PYEXT: 'pyd'
- os: macos-latest
ARCH: macos-x86_64
LIBFILE: 'libhyperbuild_python_lib.dylib'
PYEXT: 'so'
steps:
- uses: actions/checkout@v1
- name: Get version
id: version
shell: bash
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/v}
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.5'
architecture: 'x64'
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2019-07-19
profile: minimal
default: true
- name: Build native module
working-directory: ./python
run: cargo build --release
- uses: chrislennon/action-aws-cli@v1.1
- name: Upload to S3
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: us-west-2
run: aws s3 cp ./python/target/release/${{ matrix.LIBFILE }} s3://${{ secrets.AWS_S3_BUCKET }}/hyperbuild/bin/python/${{ steps.version.outputs.VERSION }}/${{ matrix.ARCH }}/hyperbuild.${{ matrix.PYEXT }}
package:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v1
- name: Get version
id: version
shell: bash
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/v}
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.5'
architecture: 'x64'
- name: Install Python dependencies
run: |
pip install --upgrade awscli
pip install --upgrade wheel
pip install --upgrade setuptools
pip install --upgrade twine
- name: Pack and publish package
working-directory: ./python
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: us-west-2
run: |
cat << 'EOF' > "$HOME/.pypirc"
[pypi]
username = __token__
password = ${{ secrets.PYPI_API_TOKEN }}
EOF
cp ../README.md .
aws s3 mv s3://${{ secrets.AWS_S3_BUCKET }}/hyperbuild/bin/python/${{ steps.version.outputs.VERSION }}/ ./hyperbuild/. --recursive
2020-01-20 04:44:47 -05:00
python setup.py sdist bdist_wheel
python -m twine upload dist/*