testpat: Fix memory mapping in threaded drawing #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C/C++ CI | |
on: | |
push: | |
branches: [ "master", "test" ] | |
pull_request: | |
branches: [ "master", "test" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install deps | |
run: sudo apt install -y meson ninja-build libdrm-dev libegl1-mesa-dev libgles2-mesa-dev libwayland-dev libx11-xcb-dev libx11-dev libgbm-dev libevdev-dev libfmt-dev | |
- name: configure | |
run: meson setup -Dkmscube=true -Dpykms=enabled -Dwerror=true -Db_lto=true build | |
- name: build | |
run: ninja -v -C build |