add i915 integrated gpu support, fix fdinfo in gamescope and continuously poll fdinfo needed for some games #791
Workflow file for this run
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: Mingw build testing | |
on: [push, pull_request] | |
jobs: | |
build-mingw: | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install prerequisites | |
run: | | |
pacman -Syu mingw-w64-gcc meson python-mako glslang mingw-w64-headers git --noconfirm | |
- name: configure | |
run: meson setup --cross-file mingw64.txt build64 | |
- name: build | |
run: ninja -C build64 |