mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-04-03 15:50:43 +02:00
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:
parent
1279f0d0bc
commit
c892cef63d
27
.github/workflows/examples.yml
vendored
27
.github/workflows/examples.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user