Skip to content

Commit ff0cb7a

Browse files
committed
add CI
1 parent 1af30e3 commit ff0cb7a

3 files changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/compilation_on_android_ubuntu.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -628,6 +628,14 @@ jobs:
628628
cmake --build . --config Release --parallel 4
629629
./import-func-callback
630630
631+
- name: Build Sample [custom_section]
632+
run: |
633+
cd samples/custom_section
634+
./build.sh
635+
./run.sh
636+
./build.sh --aot
637+
./run.sh --aot
638+
631639
test:
632640
needs: [build_iwasm, build_llvm_libraries_on_ubuntu_2204, build_wamrc]
633641
runs-on: ${{ matrix.os }}

.github/workflows/compilation_on_macos.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,14 @@ jobs:
441441
cmake --build . --config Release --parallel 4
442442
./import-func-callback
443443
444+
- name: Build Sample [custom_section]
445+
run: |
446+
cd samples/custom_section
447+
./build.sh
448+
./run.sh
449+
./build.sh --aot
450+
./run.sh --aot
451+
444452
- name: Test x18 register reservation (macOS ARM64 only)
445453
if: matrix.os == 'macos-15'
446454
run: |

.github/workflows/nightly_run.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -598,6 +598,14 @@ jobs:
598598
cmake --build . --config Release --parallel 4
599599
./import-func-callback
600600
601+
- name: Build Sample [custom_section]
602+
run: |
603+
cd samples/custom_section
604+
./build.sh
605+
./run.sh
606+
./build.sh --aot
607+
./run.sh --aot
608+
601609
test:
602610
needs: [build_iwasm, build_llvm_libraries_on_ubuntu, build_wamrc]
603611
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)