233 lines
8.0 KiB
YAML
233 lines
8.0 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
|
|
with:
|
|
python-version: "3.9"
|
|
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
|
|
|
|
# Make sure commit messages follow the conventional commits convention:
|
|
# https://www.conventionalcommits.org
|
|
commitlint:
|
|
name: Lint Commit Messages
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: wagoid/commitlint-github-action@b948419dd99f3fd78a6548d48f94e3df7f6bf3ed # v6
|
|
|
|
test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version:
|
|
- "3.9"
|
|
- "3.10"
|
|
- "3.11"
|
|
- "3.12"
|
|
- "3.13"
|
|
os:
|
|
- ubuntu-latest
|
|
extension:
|
|
- "skip_cython"
|
|
- "use_cython"
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- name: Install libs
|
|
run: sudo apt-get install -y dbus-daemon python3-gi libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0
|
|
- uses: snok/install-poetry@76e04a911780d5b312d89783f7b1cd627778900a # v1.4.1
|
|
- name: Set up Python
|
|
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
cache: "poetry"
|
|
allow-prereleases: true
|
|
- name: Install Dependencies
|
|
run: |
|
|
if [ "${{ matrix.extension }}" = "skip_cython" ]; then
|
|
SKIP_CYTHON=1 poetry install --only=main,dev
|
|
else
|
|
REQUIRE_CYTHON=1 poetry install --only=main,dev
|
|
fi
|
|
- name: Test with Pytest
|
|
run: dbus-run-session -- poetry run pytest --cov-report=xml --timeout=5
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d # v5
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
test_big_endian:
|
|
name: Big-endian s390x tests
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- uses: uraimo/run-on-arch-action@1c358dc49363439f8c563ce8f93005f7fe76b849 # v3
|
|
name: Run commands
|
|
id: runcmd
|
|
with:
|
|
arch: s390x
|
|
distro: ubuntu_latest
|
|
run: |
|
|
apt-get -y update
|
|
apt-get -y install git python3-pip python3-venv python3-poetry dbus-daemon python3-gi libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0
|
|
git clone --depth 1 $GITHUB_SERVER_URL/$GITHUB_REPOSITORY
|
|
cd dbus-fast
|
|
git fetch origin --depth 1 $GITHUB_SHA
|
|
git checkout $GITHUB_SHA
|
|
REQUIRE_CYTHON=1 poetry install --only=main,dev
|
|
dbus-run-session -- poetry run pytest --no-cov --timeout=100
|
|
|
|
benchmark:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- name: Install libs
|
|
run: sudo apt-get install -y dbus-daemon python3-gi libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0
|
|
- uses: snok/install-poetry@76e04a911780d5b312d89783f7b1cd627778900a # v1.4.1
|
|
- name: Setup Python 3.13
|
|
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
|
|
with:
|
|
python-version: 3.13
|
|
cache: "poetry"
|
|
- name: Install Dependencies
|
|
run: |
|
|
REQUIRE_CYTHON=1 poetry install --only=main,dev
|
|
shell: bash
|
|
- name: Run benchmarks
|
|
uses: CodSpeedHQ/action@0010eb0ca6e89b80c88e8edaaa07cfe5f3e6664d # v3
|
|
with:
|
|
token: ${{ secrets.CODSPEED_TOKEN }}
|
|
run: dbus-run-session -- poetry run pytest --no-cov -vvvvv --codspeed tests/benchmarks
|
|
|
|
release:
|
|
needs:
|
|
- test
|
|
- lint
|
|
- commitlint
|
|
|
|
runs-on: ubuntu-latest
|
|
environment: release
|
|
concurrency: release
|
|
permissions:
|
|
id-token: write
|
|
contents: write
|
|
outputs:
|
|
released: ${{ steps.release.outputs.released }}
|
|
newest_release_tag: ${{ steps.release_tag.outputs.newest_release_tag }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
with:
|
|
fetch-depth: 0
|
|
ref: ${{ github.head_ref || github.ref_name }}
|
|
|
|
# Do a dry run of PSR
|
|
- name: Test release
|
|
uses: python-semantic-release/python-semantic-release@26bb37cfab71a5a372e3db0f48a6eac57519a4a6 # v9.21.0
|
|
if: github.ref_name != 'main'
|
|
with:
|
|
root_options: --noop
|
|
|
|
# On main branch: actual PSR + upload to PyPI & GitHub
|
|
- name: Release
|
|
uses: python-semantic-release/python-semantic-release@26bb37cfab71a5a372e3db0f48a6eac57519a4a6 # v9.21.0
|
|
id: release
|
|
if: github.ref_name == 'main'
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Publish package distributions to PyPI
|
|
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # release/v1
|
|
if: steps.release.outputs.released == 'true'
|
|
|
|
- name: Publish package distributions to GitHub Releases
|
|
uses: python-semantic-release/upload-to-gh-release@0a92b5d7ebfc15a84f9801ebd1bf706343d43711 # main
|
|
if: steps.release.outputs.released == 'true'
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Install python-semantic-release
|
|
run: python3 -m pip install python-semantic-release==7.34.6
|
|
|
|
- name: Get Release Tag
|
|
id: release_tag
|
|
shell: bash
|
|
run: |
|
|
echo "newest_release_tag=$(semantic-release print-version --current)" >> $GITHUB_OUTPUT
|
|
|
|
build_wheels:
|
|
needs: [release]
|
|
if: needs.release.outputs.released == 'true'
|
|
|
|
name: Build wheels on ${{ matrix.os }} with arch ${{ matrix.arch }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-24.04-arm, ubuntu-latest, macos-latest]
|
|
musl: ["", "musllinux"]
|
|
exclude:
|
|
- os: macos-latest
|
|
musl: "musllinux"
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
with:
|
|
ref: "v${{ needs.release.outputs.newest_release_tag }}"
|
|
fetch-depth: 0
|
|
# Used to host cibuildwheel
|
|
- name: Set up Python
|
|
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
|
|
|
|
- name: Install cibuildwheel
|
|
run: python -m pip install cibuildwheel==2.22.0
|
|
|
|
- name: Build wheels
|
|
run: python -m cibuildwheel --output-dir wheelhouse
|
|
# to supply options, put them in 'env', like:
|
|
env:
|
|
CIBW_SKIP: "*p36-* *p37-* *p38-* ${{ matrix.musl == 'musllinux' && '*manylinux*' || '*musllinux*' }}"
|
|
CIBW_BEFORE_ALL_LINUX: apt-get install -y gcc || yum install -y gcc || apk add gcc
|
|
CIBW_BUILD_VERBOSITY: 3
|
|
REQUIRE_CYTHON: 1
|
|
CIBW_ARCHS_LINUX: ${{ matrix.os == 'ubuntu-24.04-arm' && 'aarch64' || 'auto' }}
|
|
|
|
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
|
|
with:
|
|
path: ./wheelhouse/*.whl
|
|
name: wheels-${{ matrix.os }}-${{ matrix.musl }}
|
|
|
|
upload_pypi:
|
|
needs: [build_wheels]
|
|
runs-on: ubuntu-latest
|
|
environment: release
|
|
permissions:
|
|
id-token: write
|
|
contents: write
|
|
steps:
|
|
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
|
|
with:
|
|
# unpacks default artifact into dist/
|
|
# if `name: artifact` is omitted, the action will create extra parent dir
|
|
pattern: wheels-*
|
|
path: dist
|
|
merge-multiple: true
|
|
|
|
- uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
|