samples/terminate: Add a sample to demonstrate wasm_runtime_terminate (#3043)

This is basically a modified copy of the "shared-module" example.
This commit is contained in:
YAMAMOTO Takashi
2024-01-18 16:01:03 +09:00
committed by GitHub
parent d13a54f860
commit b97370e3a8
10 changed files with 391 additions and 0 deletions

View File

@ -451,6 +451,12 @@ jobs:
./build.sh
./run.sh
- name: Build Sample [terminate]
run: |
cd samples/terminate
./build.sh
./run.sh
test:
needs:
[

View File

@ -333,3 +333,9 @@ jobs:
cd samples/shared-module
./build.sh
./run.sh
- name: Build Sample [terminate]
run: |
cd samples/terminate
./build.sh
./run.sh

View File

@ -509,6 +509,12 @@ jobs:
cd samples/shared-module
./build.sh
./run.sh
- name: Build Sample [terminate]
run: |
cd samples/terminate
./build.sh
./run.sh
test:
needs:
[