Skip to content

Download in a separate folder #405

Download in a separate folder

Download in a separate folder #405

name: Build, test and release
on:
pull_request:
branches:
- main
push:
branches:
- main
- bugfix/*
- feature/*
tags:
- v*
permissions:
contents: write
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: |
pip install mypy ruff
make lint
sdist:
name: Build sdist wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: build sdist
run: |
make preprocess
pip install build
python -m build --sdist
pip install ./dist/*.tar.gz
- name: upload artifacts
uses: actions/upload-artifact@v4 # https://github.com/actions/upload-artifact/issues/478
with:
name: curl_cffi-${{ github.sha }}-sdist.zip
path: ./dist/*.tar.gz
bdist:
name: Build bdist wheels and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-12, macos-14, windows-2019]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
# macOS make is too old
- if: runner.os == 'macOS'
run: |
brew install make automake libtool
- name: Build and test wheels
uses: pypa/[email protected]
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- uses: actions/upload-artifact@v4 # https://github.com/actions/upload-artifact/issues/478
with:
name: curl_cffi-${{ github.sha }}-${{ matrix.os }}.zip
path: ./wheelhouse/*.whl
- uses: actions/[email protected] # https://github.com/actions/upload-artifact/issues/478
with:
pattern: curl_cffi-*
path: download
- run: |
ls download
unzip download/\*.zip -d dist
ls -al dist
upload_all:
needs: [bdist, sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected] # https://github.com/actions/upload-artifact/issues/478
if: startsWith(github.ref, 'refs/tags/')
with:
pattern: curl_cffi-*
path: dist
# - uses: pypa/[email protected]
# if: startsWith(github.ref, 'refs/tags/')
# with:
# password: ${{ secrets.PYPI_TOKEN }}
# - name: Upload release files
# if: startsWith(github.ref, 'refs/tags/')
# uses: softprops/action-gh-release@v2
# with:
# files: |
# ./dist/*.whl
# ./dist/*.tar.gz