-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
54 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: ChatTTS example | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
push: | ||
paths: | ||
- ".github/workflows/chatTTS.yml" | ||
- "wasmedge-chatTTS/**" | ||
pull_request: | ||
paths: | ||
- ".github/workflows/chatTTS.yml" | ||
- "wasmedge-chatTTS/**" | ||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Install Dependencies for building WasmEdge | ||
run: | | ||
sudo apt-get -y update | ||
sudo apt-get -y install wget git curl software-properties-common build-essential python3 python3-dev python3-pip ninja-build | ||
pip install chattts==0.1.1 | ||
- name: Install Rust target for wasm | ||
run: | | ||
rustup target add wasm32-wasi | ||
- name: Checkout WasmEdge | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: WasmEdge/WasmEdge | ||
path: WasmEdge | ||
- name: Build WasmEdge with WASI-NN ChatTTS plugin | ||
run: | | ||
cmake -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Release -DWASMEDGE_USE_LLVM=OFF -DWASMEDGE_PLUGIN_WASI_NN_BACKEND=ChatTTS | ||
cmake --build build | ||
working-directory: WasmEdge | ||
|
||
- name: Checkout WasmEdge-WASINN-examples | ||
uses: actions/checkout@v4 | ||
with: | ||
path: WasmEdge-WASINN-examples | ||
|
||
- name: Build wasm | ||
run: cargo build --target wasm32-wasi --release | ||
working-directory: WasmEdge-WASINN-examples/wasmedge-chatTTS | ||
|
||
- name: Execute | ||
run: WASMEDGE_PLUGIN_PATH=WasmEdge/build/plugins/wasi_nn WasmEdge/build/tools/wasmedge/wasmedge --dir .:. WasmEdge-WASINN-examples/wasmedge-chatTTS/target/wasm32-wasi/release/wasmedge-chattts.wasm | ||
|
||
- name: Verify output | ||
run: test "$(file --brief output1.wav)" == 'RIFF (little-endian) data, WAVE audio, mono 24000 Hz' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters