mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-04-04 08:10:38 +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:
|
paths:
|
||||||
- examples/addon.node/**
|
- examples/addon.node/**
|
||||||
- whisper.h
|
- whisper.h
|
||||||
|
- examples/command.wasm/**
|
||||||
|
- examples/bench.wasm/**
|
||||||
|
- examples/stream.wasm/**
|
||||||
|
- examples/whisper.wasm/**
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- examples/addon.node/**
|
- examples/addon.node/**
|
||||||
- whisper.h
|
- whisper.h
|
||||||
|
- examples/command.wasm/**
|
||||||
|
- examples/bench.wasm/**
|
||||||
|
- examples/stream.wasm/**
|
||||||
|
- examples/whisper.wasm/**
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
addon_node-ubuntu-22:
|
addon_node-ubuntu-22:
|
||||||
@ -46,3 +54,22 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cd examples/addon.node
|
cd examples/addon.node
|
||||||
npm run test
|
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