Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
wlroots-version: ["0.17.4", master]
wlroots-version: ["0.17.4"]
steps:
- name: Install dependencies
run: |
Expand Down Expand Up @@ -90,7 +90,6 @@ jobs:
sudo ninja -C build install
- name: Build wlroots
working-directory: wlroots-${{ matrix.wlroots-version }}
continue-on-error: ${{ matrix.wlroots-version == 'master' }}
run: |
meson build --prefix=/usr -Dxwayland=enabled
ninja -C build
Expand All @@ -104,7 +103,7 @@ jobs:
path: ~/wayland.tar.gz
if-no-files-found: error
unit-test:
name: Python ${{ matrix.python-version}} unit tests (${{ matrix.wlroots-version }})
name: Python ${{ matrix.python-version}} unit tests
runs-on: ubuntu-24.04
needs: build-wayland
strategy:
Expand All @@ -118,9 +117,6 @@ jobs:
- "3.13"
- "pypy-3.11"
wlroots-version: ["0.17.4"]
include:
- python-version: "3.13"
wlroots-version: master
steps:
- name: Download wayland libraries
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -174,11 +170,9 @@ jobs:
run: |
echo "XDG_RUNTIME_DIR=/tmp" >> $GITHUB_ENV
- name: Install Python dependencies
continue-on-error: ${{ matrix.wlroots-version == 'master' }}
run: |
pip install -e .[test]
- name: Run unit tests
continue-on-error: ${{ matrix.wlroots-version == 'master' }}
run: pytest -Wall
env:
WLR_HEADLESS_OUTPUTS: '1'
Expand Down