Skip to content

Merge pull request #70 from GuardKenzie/dependabot/github_actions/pyp… #300

Merge pull request #70 from GuardKenzie/dependabot/github_actions/pyp…

Merge pull request #70 from GuardKenzie/dependabot/github_actions/pyp… #300

Workflow file for this run

name: 🔨 Build
on:
push:
pull_request:
release:
types:
- published
jobs:
build_wheels:
name: 🎡 ${{ matrix.os }} wheels
runs-on: ${{ matrix.os }}
env:
CHAFA_VERSION: master
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
# os: [ubuntu-20.04, windows-2019, macos-11]
steps:
- uses: actions/checkout@v4
- name: Setup UCRT64
uses: msys2/setup-msys2@v2
if: matrix.os == 'windows-latest'
with:
msystem: ucrt64
install: >-
git
mingw-w64-ucrt-x86_64-toolchain
mingw-w64-ucrt-x86_64-glib2
mingw-w64-ucrt-x86_64-pkg-config
mingw-w64-ucrt-x86_64-make
automake
autoconf
libtool
make
- name: Build Windows DLLs
if: matrix.os == 'windows-latest'
shell: msys2 {0}
run: |
git clone --branch $CHAFA_VERSION https://github.com/hpjansson/chafa libchafa_src
cd libchafa_src
./autogen.sh --without-tools --host=mingw64 && make
- name: Build wheels
uses: pypa/[email protected]
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl
make_sdist:
name: 💽 Make SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build SDist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4
with:
name: sdist
path: dist/*.tar.gz
upload_all:
name: 📬 Deliver to PyPi
needs: [build_wheels, make_sdist]
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v4
with:
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}