Skip to content

Commit

Permalink
mangoconfig workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
flightlessmango committed Sep 23, 2023
1 parent 839c99d commit 778e2d3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/emscripten.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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 emscripten.cross build64
- name: build
run: ninja -C build64

0 comments on commit 778e2d3

Please sign in to comment.