You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MangoHud/.github/workflows/emscripten.yml

19 lines
569 B
YAML

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