mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-11-04 06:00:23 +00:00
17 lines
468 B
YAML
17 lines
468 B
YAML
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 |