Enable source debugger CI on windows and darwin (#912)

This commit is contained in:
Xu Jun
2021-12-24 16:57:23 +08:00
committed by GitHub
parent ccb2de35d7
commit ac3f7dcc0e
3 changed files with 18 additions and 2 deletions

View File

@ -230,8 +230,6 @@ jobs:
# uncompatiable feature and platform
- os: macos-latest
make_options_feature: "-DWAMR_BUILD_DEBUG_AOT=1"
- os: macos-latest
make_options_feature: "-DWAMR_BUILD_DEBUG_INTERP=1"
# uncompatiable mode and feature
# MULTI_MODULE only on INTERP mode
- make_options_run_mode: $JIT_BUILD_OPTIONS

View File

@ -104,3 +104,10 @@ jobs:
cmake .. -DWAMR_BUILD_SIMD=1
cmake --build . --config Release --parallel 4
cd .. && rm -force -r build
- name: Build iwasm [source debugger]
run: |
cd product-mini/platforms/windows
mkdir build && cd build
cmake .. -DWAMR_BUILD_DEBUG_INTERP=1
cmake --build . --config Release --parallel 4
cd .. && rm -force -r build