ci : add build of wasm examples to CI

This commit add the building of the wasm examples to CI.

Refs: https://github.com/ggerganov/whisper.cpp/issues/2784
This commit is contained in:
Daniel Bevenius 2025-03-28 10:45:18 +01:00
parent 1279f0d0bc
commit c892cef63d

View File

@ -4,10 +4,18 @@ on:
paths:
- examples/addon.node/**
- whisper.h
- examples/command.wasm/**
- examples/bench.wasm/**
- examples/stream.wasm/**
- examples/whisper.wasm/**
pull_request:
paths:
- examples/addon.node/**
- whisper.h
- examples/command.wasm/**
- examples/bench.wasm/**
- examples/stream.wasm/**
- examples/whisper.wasm/**
jobs:
addon_node-ubuntu-22:
@ -46,3 +54,22 @@ jobs:
run: |
cd examples/addon.node
npm run test
wasm-ubuntu-22:
runs-on: ubuntu-22.04
steps:
- name: Clone
uses: actions/checkout@v1
- name: Setup emsdk
uses: mymindstorm/setup-emsdk@v14
- name: Verify
run: emcc -v
- name: Build
run: |
mkdir build-em && cd build-em
emcmake cmake ..
make -j