Skip to content

Wlr 0.17

Wlr 0.17 #5872

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
name: "python ${{ matrix.python-version }} on ${{ matrix.backend }}"
strategy:
matrix:
# If you change one of these, be sure to update:
# - /tox.ini:[gh-actions]
# - /setup.cfg:[mypy]
# If adding new python versions, consider also updating
# python version in .readthedocs.yaml
python-version: [pypy-3.10, '3.10', '3.11', '3.12']
backend: ['x11', 'wayland']
steps:
- uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt update
# Any Wayland-specific Ubuntu system dependencies should be installed from ./scripts/ubuntu_wayland_setup
sudo apt install --no-install-recommends \
libdbus-1-dev libgirepository1.0-dev gir1.2-gtk-3.0 gir1.2-notify-0.7 gir1.2-gudev-1.0 graphviz \
imagemagick git xserver-xephyr xterm xvfb dbus-x11 libnotify-bin \
libxcb-composite0-dev libxcb-icccm4-dev libxcb-res0-dev libxcb-render0-dev libxcb-res0-dev \
libxcb-xfixes0-dev vlc volumeicon-alsa libxkbcommon-dev
sudo pip -q install meson PyGObject
pip -q install tox tox-gh-actions
- name: Install wayland
if: ${{ matrix.backend == 'wayland' }}
run: bash -x ./scripts/ubuntu_wayland_setup
- name: Run Tests
run: |
[ "$(grep -c -P '\t' CHANGELOG)" = "0" ]
tox
env:
BACKEND: ${{ matrix.backend }}
- name: Upload coverage data to coveralls.io
run: |
pip -q install coveralls >=3.3.0
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: ${{ format('{0}-{1}', matrix.python-version, matrix.backend) }}
COVERALLS_PARALLEL: true
COVERALLS_SERVICE_JOB_ID: ${{ github.run_id }}
coverage:
name: Finalize Coverage
needs: build
runs-on: ubuntu-20.04
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true