From 2254f3c1d1416031f4ce4e20d13a1d3152a56826 Mon Sep 17 00:00:00 2001 From: FlightlessMango Date: Sat, 23 Sep 2023 05:28:04 +0200 Subject: [PATCH] mangoconfig workflow --- .github/workflows/emscripten.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/emscripten.yml diff --git a/.github/workflows/emscripten.yml b/.github/workflows/emscripten.yml new file mode 100644 index 00000000..a7cfddc6 --- /dev/null +++ b/.github/workflows/emscripten.yml @@ -0,0 +1,19 @@ +name: emscripten build testing + +on: [push, pull_request] +jobs: + build-emscripten: + runs-on: ubuntu-latest + container: + image: archlinux:latest + steps: + - uses: actions/checkout@v3 + - name: Install prerequisites + run: | + pacman -Syu meson emscripten git glew glfw-x11 pkg-config python-mako glslang --noconfirm + - name: configure + working-directory: ./mangoconfig + run: meson setup --cross-file emscripten.cross build64 + - name: build + working-directory: ./mangoconfig + run: ninja -C build64 \ No newline at end of file