Skip to content

Commit

Permalink
Add a Web Assembly GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Mar 12, 2024
1 parent 39e8605 commit 18b939d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Web Assembly

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Apt Update
run: sudo apt update
- name: Apt Install
run: sudo apt install ninja-build --yes --quiet
- name: Get Submodules
run: ./get_dlc
- name: Compile
run: ./make wasm --kinc . --from Tests/Empty --compile

0 comments on commit 18b939d

Please sign in to comment.