From 80b976b8cfbd1656618b4f7286dc2ac617274027 Mon Sep 17 00:00:00 2001 From: FlightlessMango Date: Sun, 9 Apr 2023 18:48:53 +0200 Subject: [PATCH] workflow: mingw build test --- .github/workflows/mingw.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/mingw.yml diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml new file mode 100644 index 00000000..8d2285c9 --- /dev/null +++ b/.github/workflows/mingw.yml @@ -0,0 +1,17 @@ +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 --noconfirm + - name: configure + run: meson setup --cross-file mingw64.txt build64 + - name: build + run: ninja -C build64 \ No newline at end of file