Skip to content

mangoconfig workflow #1

mangoconfig workflow

mangoconfig workflow #1

Workflow file for this run

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 --noconfirm
- name: configure
working-directory: ./mangoconfig
run: meson setup --cross-file mingw64.txt build64
- name: build
run: ninja -C build64