mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-06-18 02:59:21 +00:00
Add asan and ubsan to WAMR CI (#2161)
Add nightly (UTC time) checks with asan and ubsan, and also put gcc-4.8 build to nightly run since we don't need to run it with every PR. Co-authored-by: Maksim Litskevich <makslit@amazon.co.uk>
This commit is contained in:
parent
f10563dfb4
commit
27239723a9
|
@ -76,7 +76,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
os: "ubuntu-22.04"
|
os: "ubuntu-22.04"
|
||||||
arch: "X86"
|
arch: "X86"
|
||||||
|
|
||||||
build_wamrc:
|
build_wamrc:
|
||||||
needs:
|
needs:
|
||||||
[build_llvm_libraries_on_ubuntu_2004, build_llvm_libraries_on_ubuntu_2204]
|
[build_llvm_libraries_on_ubuntu_2004, build_llvm_libraries_on_ubuntu_2204]
|
||||||
|
@ -117,84 +117,6 @@ jobs:
|
||||||
cmake --build . --config Release --parallel 4
|
cmake --build . --config Release --parallel 4
|
||||||
working-directory: wamr-compiler
|
working-directory: wamr-compiler
|
||||||
|
|
||||||
build_iwasm_linux_gcc4_8:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ubuntu:14.04
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
make_options_run_mode: [
|
|
||||||
# Running mode
|
|
||||||
$CLASSIC_INTERP_BUILD_OPTIONS,
|
|
||||||
$FAST_INTERP_BUILD_OPTIONS,
|
|
||||||
$FAST_JIT_BUILD_OPTIONS,
|
|
||||||
]
|
|
||||||
make_options_feature: [
|
|
||||||
# Features
|
|
||||||
"-DWAMR_BUILD_CUSTOM_NAME_SECTION=1",
|
|
||||||
"-DWAMR_BUILD_DEBUG_AOT=1",
|
|
||||||
"-DWAMR_BUILD_DEBUG_INTERP=1",
|
|
||||||
"-DWAMR_BUILD_DUMP_CALL_STACK=1",
|
|
||||||
"-DWAMR_BUILD_LIB_PTHREAD=1",
|
|
||||||
"-DWAMR_BUILD_LIB_WASI_THREADS=1",
|
|
||||||
"-DWAMR_BUILD_LOAD_CUSTOM_SECTION=1",
|
|
||||||
"-DWAMR_BUILD_MINI_LOADER=1",
|
|
||||||
"-DWAMR_BUILD_MEMORY_PROFILING=1",
|
|
||||||
"-DWAMR_BUILD_MULTI_MODULE=1",
|
|
||||||
"-DWAMR_BUILD_PERF_PROFILING=1",
|
|
||||||
"-DWAMR_BUILD_REF_TYPES=1",
|
|
||||||
"-DWAMR_BUILD_SIMD=1",
|
|
||||||
"-DWAMR_BUILD_TAIL_CALL=1",
|
|
||||||
"-DWAMR_DISABLE_HW_BOUND_CHECK=1",
|
|
||||||
]
|
|
||||||
exclude:
|
|
||||||
# uncompatiable feature and platform
|
|
||||||
# uncompatiable mode and feature
|
|
||||||
# MULTI_MODULE only on INTERP mode
|
|
||||||
- make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
|
|
||||||
make_options_feature: "-DWAMR_BUILD_MULTI_MODULE=1"
|
|
||||||
# SIMD only on JIT/AOT mode
|
|
||||||
- make_options_run_mode: $CLASSIC_INTERP_BUILD_OPTIONS
|
|
||||||
make_options_feature: "-DWAMR_BUILD_SIMD=1"
|
|
||||||
- make_options_run_mode: $FAST_INTERP_BUILD_OPTIONS
|
|
||||||
make_options_feature: "-DWAMR_BUILD_SIMD=1"
|
|
||||||
# DEBUG_INTERP only on CLASSIC INTERP mode
|
|
||||||
- make_options_run_mode: $FAST_INTERP_BUILD_OPTIONS
|
|
||||||
make_options_feature: "-DWAMR_BUILD_DEBUG_INTERP=1"
|
|
||||||
- make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
|
|
||||||
make_options_feature: "-DWAMR_BUILD_DEBUG_INTERP=1"
|
|
||||||
# DEBUG_AOT only on JIT/AOT mode
|
|
||||||
- make_options_run_mode: $CLASSIC_INTERP_BUILD_OPTIONS
|
|
||||||
make_options_feature: "-DWAMR_BUILD_DEBUG_AOT=1"
|
|
||||||
- make_options_run_mode: $FAST_INTERP_BUILD_OPTIONS
|
|
||||||
make_options_feature: "-DWAMR_BUILD_DEBUG_AOT=1"
|
|
||||||
# TODO: DEBUG_AOT on JIT
|
|
||||||
- make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
|
|
||||||
make_options_feature: "-DWAMR_BUILD_DEBUG_AOT=1"
|
|
||||||
# MINI_LOADER only on INTERP mode
|
|
||||||
- make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
|
|
||||||
make_options_feature: "-DWAMR_BUILD_MINI_LOADER=1"
|
|
||||||
steps:
|
|
||||||
- name: checkout
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: apt update && apt install -y make g++-4.8 gcc-4.8 wget git
|
|
||||||
|
|
||||||
- name: Install cmake
|
|
||||||
run: |
|
|
||||||
wget https://github.com/Kitware/CMake/releases/download/v3.26.1/cmake-3.26.1-linux-x86_64.tar.gz -O cmake.tar.gz
|
|
||||||
tar xzf cmake.tar.gz
|
|
||||||
cp cmake-3.26.1-linux-x86_64/bin/cmake /usr/local/bin
|
|
||||||
cp -r cmake-3.26.1-linux-x86_64/share/cmake-3.26/ /usr/local/share/
|
|
||||||
|
|
||||||
- name: Build iwasm
|
|
||||||
run: |
|
|
||||||
mkdir build && cd build
|
|
||||||
cmake .. ${{ matrix.make_options_run_mode }} ${{ matrix.make_options_feature }} -DCMAKE_C_COMPILER=gcc-4.8 -DCMAKE_CXX_COMPILER=g++-4.8
|
|
||||||
cmake --build . --config Release --parallel 4
|
|
||||||
working-directory: product-mini/platforms/linux
|
|
||||||
|
|
||||||
build_iwasm:
|
build_iwasm:
|
||||||
needs:
|
needs:
|
||||||
[build_llvm_libraries_on_ubuntu_2004, build_llvm_libraries_on_ubuntu_2204]
|
[build_llvm_libraries_on_ubuntu_2004, build_llvm_libraries_on_ubuntu_2204]
|
||||||
|
@ -342,7 +264,6 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
sanitizer: ["", "ubsan"]
|
|
||||||
make_options: [
|
make_options: [
|
||||||
# Running mode
|
# Running mode
|
||||||
$AOT_BUILD_OPTIONS,
|
$AOT_BUILD_OPTIONS,
|
||||||
|
@ -400,14 +321,14 @@ jobs:
|
||||||
if: (!endsWith(matrix.make_options, '_INTERP_BUILD_OPTIONS'))
|
if: (!endsWith(matrix.make_options, '_INTERP_BUILD_OPTIONS'))
|
||||||
run: |
|
run: |
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
cmake -DSANITIZER="${{matrix.sanitizer}}" ..
|
cmake ..
|
||||||
cmake --build . --config Release --parallel 4
|
cmake --build . --config Release --parallel 4
|
||||||
working-directory: wamr-compiler
|
working-directory: wamr-compiler
|
||||||
|
|
||||||
- name: Build Sample [wasm-c-api]
|
- name: Build Sample [wasm-c-api]
|
||||||
run: |
|
run: |
|
||||||
VERBOSE=1
|
VERBOSE=1
|
||||||
cmake -S . -B build ${{ matrix.make_options }} -DSANITIZER="${{matrix.sanitizer}}"
|
cmake -S . -B build ${{ matrix.make_options }}
|
||||||
cmake --build build --config Release --parallel 4
|
cmake --build build --config Release --parallel 4
|
||||||
ctest --test-dir build --output-on-failure
|
ctest --test-dir build --output-on-failure
|
||||||
working-directory: samples/wasm-c-api
|
working-directory: samples/wasm-c-api
|
||||||
|
@ -515,6 +436,7 @@ jobs:
|
||||||
]
|
]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-20.04, ubuntu-22.04]
|
os: [ubuntu-20.04, ubuntu-22.04]
|
||||||
running_mode:
|
running_mode:
|
||||||
|
|
622
.github/workflows/nightly_run.yml
vendored
Normal file
622
.github/workflows/nightly_run.yml
vendored
Normal file
|
@ -0,0 +1,622 @@
|
||||||
|
# Copyright (C) 2023 Intel Corporation. All rights reserved.
|
||||||
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||||
|
|
||||||
|
name: nightly_run
|
||||||
|
|
||||||
|
on:
|
||||||
|
# midnight UTC
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 * * *"
|
||||||
|
# allow to be triggered manually
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
# Cancel any in-flight jobs for the same PR/branch so there's only one active
|
||||||
|
# at a time
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
env:
|
||||||
|
# For BUILD
|
||||||
|
AOT_BUILD_OPTIONS: " -DWAMR_BUILD_AOT=1 -DWAMR_BUILD_FAST_INTERP=0 -DWAMR_BUILD_INTERP=0 -DWAMR_BUILD_FAST_JIT=0 -DWAMR_BUILD_JIT=0 -DWAMR_BUILD_LAZY_JIT=0"
|
||||||
|
CLASSIC_INTERP_BUILD_OPTIONS: "-DWAMR_BUILD_AOT=0 -DWAMR_BUILD_FAST_INTERP=0 -DWAMR_BUILD_INTERP=1 -DWAMR_BUILD_FAST_JIT=0 -DWAMR_BUILD_JIT=0 -DWAMR_BUILD_LAZY_JIT=0"
|
||||||
|
FAST_INTERP_BUILD_OPTIONS: " -DWAMR_BUILD_AOT=0 -DWAMR_BUILD_FAST_INTERP=1 -DWAMR_BUILD_INTERP=1 -DWAMR_BUILD_FAST_JIT=0 -DWAMR_BUILD_JIT=0 -DWAMR_BUILD_LAZY_JIT=0"
|
||||||
|
FAST_JIT_BUILD_OPTIONS: " -DWAMR_BUILD_AOT=1 -DWAMR_BUILD_FAST_INTERP=0 -DWAMR_BUILD_INTERP=0 -DWAMR_BUILD_FAST_JIT=1 -DWAMR_BUILD_JIT=0 -DWAMR_BUILD_LAZY_JIT=0"
|
||||||
|
LLVM_LAZY_JIT_BUILD_OPTIONS: " -DWAMR_BUILD_AOT=1 -DWAMR_BUILD_FAST_INTERP=0 -DWAMR_BUILD_INTERP=0 -DWAMR_BUILD_FAST_JIT=0 -DWAMR_BUILD_JIT=1 -DWAMR_BUILD_LAZY_JIT=1"
|
||||||
|
LLVM_EAGER_JIT_BUILD_OPTIONS: "-DWAMR_BUILD_AOT=1 -DWAMR_BUILD_FAST_INTERP=0 -DWAMR_BUILD_INTERP=0 -DWAMR_BUILD_FAST_JIT=0 -DWAMR_BUILD_JIT=1 -DWAMR_BUILD_LAZY_JIT=0"
|
||||||
|
MULTI_TIER_JIT_BUILD_OPTIONS: "-DWAMR_BUILD_AOT=1 -DWAMR_BUILD_FAST_INTERP=0 -DWAMR_BUILD_INTERP=1 -DWAMR_BUILD_FAST_JIT=1 -DWAMR_BUILD_JIT=1 -DWAMR_BUILD_LAZY_JIT=1"
|
||||||
|
# For Spec Test
|
||||||
|
DEFAULT_TEST_OPTIONS: "-s spec -b -P"
|
||||||
|
MULTI_MODULES_TEST_OPTIONS: "-s spec -b -M -P"
|
||||||
|
SIMD_TEST_OPTIONS: "-s spec -b -S -P"
|
||||||
|
THREADS_TEST_OPTIONS: "-s spec -b -p -P"
|
||||||
|
X86_32_TARGET_TEST_OPTIONS: "-m x86_32 -P"
|
||||||
|
WASI_TEST_OPTIONS: "-s wasi_certification -w"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_llvm_libraries_on_ubuntu_2004:
|
||||||
|
uses: ./.github/workflows/build_llvm_libraries.yml
|
||||||
|
with:
|
||||||
|
os: "ubuntu-20.04"
|
||||||
|
arch: "X86"
|
||||||
|
|
||||||
|
build_llvm_libraries_on_ubuntu_2204:
|
||||||
|
uses: ./.github/workflows/build_llvm_libraries.yml
|
||||||
|
with:
|
||||||
|
os: "ubuntu-22.04"
|
||||||
|
arch: "X86"
|
||||||
|
|
||||||
|
build_wamrc:
|
||||||
|
needs:
|
||||||
|
[build_llvm_libraries_on_ubuntu_2004, build_llvm_libraries_on_ubuntu_2204]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2004.outputs.cache_key }}
|
||||||
|
- os: ubuntu-22.04
|
||||||
|
llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
|
||||||
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
# since jobs.id can't contain the dot character
|
||||||
|
# it is hard to use `format` to assemble the cache key
|
||||||
|
- name: Get LLVM libraries
|
||||||
|
id: retrieve_llvm_libs
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
./core/deps/llvm/build/bin
|
||||||
|
./core/deps/llvm/build/include
|
||||||
|
./core/deps/llvm/build/lib
|
||||||
|
./core/deps/llvm/build/libexec
|
||||||
|
./core/deps/llvm/build/share
|
||||||
|
key: ${{ matrix.llvm_cache_key }}
|
||||||
|
|
||||||
|
- name: Quit if cache miss
|
||||||
|
if: steps.retrieve_llvm_libs.outputs.cache-hit != 'true'
|
||||||
|
run: echo "::error::can not get prebuilt llvm libraries" && exit 1
|
||||||
|
|
||||||
|
- name: Build wamrc
|
||||||
|
run: |
|
||||||
|
mkdir build && cd build
|
||||||
|
cmake ..
|
||||||
|
cmake --build . --config Release --parallel 4
|
||||||
|
working-directory: wamr-compiler
|
||||||
|
|
||||||
|
build_iwasm:
|
||||||
|
needs:
|
||||||
|
[build_llvm_libraries_on_ubuntu_2004, build_llvm_libraries_on_ubuntu_2204]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
make_options_run_mode: [
|
||||||
|
# Running mode
|
||||||
|
$AOT_BUILD_OPTIONS,
|
||||||
|
$CLASSIC_INTERP_BUILD_OPTIONS,
|
||||||
|
$FAST_INTERP_BUILD_OPTIONS,
|
||||||
|
$FAST_JIT_BUILD_OPTIONS,
|
||||||
|
$LLVM_LAZY_JIT_BUILD_OPTIONS,
|
||||||
|
$LLVM_EAGER_JIT_BUILD_OPTIONS,
|
||||||
|
$MULTI_TIER_JIT_BUILD_OPTIONS,
|
||||||
|
]
|
||||||
|
make_options_feature: [
|
||||||
|
# Features
|
||||||
|
"-DWAMR_BUILD_CUSTOM_NAME_SECTION=1",
|
||||||
|
"-DWAMR_BUILD_DEBUG_AOT=1",
|
||||||
|
"-DWAMR_BUILD_DEBUG_INTERP=1",
|
||||||
|
"-DWAMR_BUILD_DUMP_CALL_STACK=1",
|
||||||
|
"-DWAMR_BUILD_LIB_PTHREAD=1",
|
||||||
|
"-DWAMR_BUILD_LIB_WASI_THREADS=1",
|
||||||
|
"-DWAMR_BUILD_LOAD_CUSTOM_SECTION=1",
|
||||||
|
"-DWAMR_BUILD_MINI_LOADER=1",
|
||||||
|
"-DWAMR_BUILD_MEMORY_PROFILING=1",
|
||||||
|
"-DWAMR_BUILD_MULTI_MODULE=1",
|
||||||
|
"-DWAMR_BUILD_PERF_PROFILING=1",
|
||||||
|
"-DWAMR_BUILD_REF_TYPES=1",
|
||||||
|
"-DWAMR_BUILD_SIMD=1",
|
||||||
|
"-DWAMR_BUILD_TAIL_CALL=1",
|
||||||
|
"-DWAMR_DISABLE_HW_BOUND_CHECK=1",
|
||||||
|
]
|
||||||
|
os: [ubuntu-20.04, ubuntu-22.04]
|
||||||
|
platform: [android, linux]
|
||||||
|
exclude:
|
||||||
|
# uncompatiable feature and platform
|
||||||
|
# uncompatiable mode and feature
|
||||||
|
# MULTI_MODULE only on INTERP mode
|
||||||
|
- make_options_run_mode: $AOT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_MULTI_MODULE=1"
|
||||||
|
- make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_MULTI_MODULE=1"
|
||||||
|
- make_options_run_mode: $LLVM_LAZY_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_MULTI_MODULE=1"
|
||||||
|
- make_options_run_mode: $LLVM_EAGER_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_MULTI_MODULE=1"
|
||||||
|
- make_options_run_mode: $MULTI_TIER_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_MULTI_MODULE=1"
|
||||||
|
# SIMD only on JIT/AOT mode
|
||||||
|
- make_options_run_mode: $CLASSIC_INTERP_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_SIMD=1"
|
||||||
|
- make_options_run_mode: $FAST_INTERP_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_SIMD=1"
|
||||||
|
# DEBUG_INTERP only on CLASSIC INTERP mode
|
||||||
|
- make_options_run_mode: $AOT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_INTERP=1"
|
||||||
|
- make_options_run_mode: $FAST_INTERP_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_INTERP=1"
|
||||||
|
- make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_INTERP=1"
|
||||||
|
- make_options_run_mode: $LLVM_LAZY_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_INTERP=1"
|
||||||
|
- make_options_run_mode: $LLVM_EAGER_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_INTERP=1"
|
||||||
|
- make_options_run_mode: $MULTI_TIER_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_INTERP=1"
|
||||||
|
# DEBUG_AOT only on JIT/AOT mode
|
||||||
|
- make_options_run_mode: $CLASSIC_INTERP_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_AOT=1"
|
||||||
|
- make_options_run_mode: $FAST_INTERP_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_AOT=1"
|
||||||
|
# TODO: DEBUG_AOT on JIT
|
||||||
|
- make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_AOT=1"
|
||||||
|
- make_options_run_mode: $LLVM_LAZY_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_AOT=1"
|
||||||
|
- make_options_run_mode: $LLVM_EAGER_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_AOT=1"
|
||||||
|
- make_options_run_mode: $MULTI_TIER_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_AOT=1"
|
||||||
|
# MINI_LOADER only on INTERP mode
|
||||||
|
- make_options_run_mode: $AOT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_MINI_LOADER=1"
|
||||||
|
- make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_MINI_LOADER=1"
|
||||||
|
- make_options_run_mode: $LLVM_LAZY_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_MINI_LOADER=1"
|
||||||
|
- make_options_run_mode: $LLVM_EAGER_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_MINI_LOADER=1"
|
||||||
|
- make_options_run_mode: $MULTI_TIER_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_MINI_LOADER=1"
|
||||||
|
# Fast-JIT and Multi-Tier-JIT mode don't support android(X86-32)
|
||||||
|
- make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
|
||||||
|
platform: android
|
||||||
|
- make_options_run_mode: $MULTI_TIER_JIT_BUILD_OPTIONS
|
||||||
|
platform: android
|
||||||
|
# only test andorid on ubuntu latest
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
platform: android
|
||||||
|
include:
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2004.outputs.cache_key }}
|
||||||
|
- os: ubuntu-22.04
|
||||||
|
llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
|
||||||
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
# only download llvm cache when needed
|
||||||
|
- name: Get LLVM libraries
|
||||||
|
id: retrieve_llvm_libs
|
||||||
|
if: endsWith(matrix.make_options_run_mode, '_JIT_BUILD_OPTIONS')
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
./core/deps/llvm/build/bin
|
||||||
|
./core/deps/llvm/build/include
|
||||||
|
./core/deps/llvm/build/lib
|
||||||
|
./core/deps/llvm/build/libexec
|
||||||
|
./core/deps/llvm/build/share
|
||||||
|
key: ${{ matrix.llvm_cache_key }}
|
||||||
|
|
||||||
|
- name: Quit if cache miss
|
||||||
|
if: endsWith(matrix.make_options_run_mode, '_JIT_BUILD_OPTIONS') && (steps.retrieve_llvm_libs.outputs.cache-hit != 'true')
|
||||||
|
run: echo "::error::can not get prebuilt llvm libraries" && exit 1
|
||||||
|
|
||||||
|
- name: Build iwasm
|
||||||
|
run: |
|
||||||
|
mkdir build && cd build
|
||||||
|
cmake .. ${{ matrix.make_options_run_mode }} ${{ matrix.make_options_feature }}
|
||||||
|
cmake --build . --config Release --parallel 4
|
||||||
|
working-directory: product-mini/platforms/${{ matrix.platform }}
|
||||||
|
|
||||||
|
build_iwasm_linux_gcc4_8:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ubuntu:14.04
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
make_options_run_mode: [
|
||||||
|
# Running mode
|
||||||
|
$CLASSIC_INTERP_BUILD_OPTIONS,
|
||||||
|
$FAST_INTERP_BUILD_OPTIONS,
|
||||||
|
$FAST_JIT_BUILD_OPTIONS,
|
||||||
|
]
|
||||||
|
make_options_feature: [
|
||||||
|
# Features
|
||||||
|
"-DWAMR_BUILD_CUSTOM_NAME_SECTION=1",
|
||||||
|
"-DWAMR_BUILD_DEBUG_AOT=1",
|
||||||
|
"-DWAMR_BUILD_DEBUG_INTERP=1",
|
||||||
|
"-DWAMR_BUILD_DUMP_CALL_STACK=1",
|
||||||
|
"-DWAMR_BUILD_LIB_PTHREAD=1",
|
||||||
|
"-DWAMR_BUILD_LIB_WASI_THREADS=1",
|
||||||
|
"-DWAMR_BUILD_LOAD_CUSTOM_SECTION=1",
|
||||||
|
"-DWAMR_BUILD_MINI_LOADER=1",
|
||||||
|
"-DWAMR_BUILD_MEMORY_PROFILING=1",
|
||||||
|
"-DWAMR_BUILD_MULTI_MODULE=1",
|
||||||
|
"-DWAMR_BUILD_PERF_PROFILING=1",
|
||||||
|
"-DWAMR_BUILD_REF_TYPES=1",
|
||||||
|
"-DWAMR_BUILD_SIMD=1",
|
||||||
|
"-DWAMR_BUILD_TAIL_CALL=1",
|
||||||
|
"-DWAMR_DISABLE_HW_BOUND_CHECK=1",
|
||||||
|
]
|
||||||
|
exclude:
|
||||||
|
# uncompatiable feature and platform
|
||||||
|
# uncompatiable mode and feature
|
||||||
|
# MULTI_MODULE only on INTERP mode
|
||||||
|
- make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_MULTI_MODULE=1"
|
||||||
|
# SIMD only on JIT/AOT mode
|
||||||
|
- make_options_run_mode: $CLASSIC_INTERP_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_SIMD=1"
|
||||||
|
- make_options_run_mode: $FAST_INTERP_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_SIMD=1"
|
||||||
|
# DEBUG_INTERP only on CLASSIC INTERP mode
|
||||||
|
- make_options_run_mode: $FAST_INTERP_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_INTERP=1"
|
||||||
|
- make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_INTERP=1"
|
||||||
|
# DEBUG_AOT only on JIT/AOT mode
|
||||||
|
- make_options_run_mode: $CLASSIC_INTERP_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_AOT=1"
|
||||||
|
- make_options_run_mode: $FAST_INTERP_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_AOT=1"
|
||||||
|
# TODO: DEBUG_AOT on JIT
|
||||||
|
- make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_DEBUG_AOT=1"
|
||||||
|
# MINI_LOADER only on INTERP mode
|
||||||
|
- make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
|
||||||
|
make_options_feature: "-DWAMR_BUILD_MINI_LOADER=1"
|
||||||
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: apt update && apt install -y make g++-4.8 gcc-4.8 wget git
|
||||||
|
|
||||||
|
- name: Install cmake
|
||||||
|
run: |
|
||||||
|
wget https://github.com/Kitware/CMake/releases/download/v3.26.1/cmake-3.26.1-linux-x86_64.tar.gz -O cmake.tar.gz
|
||||||
|
tar xzf cmake.tar.gz
|
||||||
|
cp cmake-3.26.1-linux-x86_64/bin/cmake /usr/local/bin
|
||||||
|
cp -r cmake-3.26.1-linux-x86_64/share/cmake-3.26/ /usr/local/share/
|
||||||
|
- name: Build iwasm
|
||||||
|
run: |
|
||||||
|
mkdir build && cd build
|
||||||
|
cmake .. ${{ matrix.make_options_run_mode }} ${{ matrix.make_options_feature }} -DCMAKE_C_COMPILER=gcc-4.8 -DCMAKE_CXX_COMPILER=g++-4.8
|
||||||
|
cmake --build . --config Release --parallel 4
|
||||||
|
working-directory: product-mini/platforms/linux
|
||||||
|
|
||||||
|
build_samples_wasm_c_api:
|
||||||
|
needs:
|
||||||
|
[
|
||||||
|
build_iwasm,
|
||||||
|
build_llvm_libraries_on_ubuntu_2004,
|
||||||
|
build_llvm_libraries_on_ubuntu_2204,
|
||||||
|
build_wamrc,
|
||||||
|
]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
sanitizer: ["", "ubsan", "asan"]
|
||||||
|
make_options: [
|
||||||
|
# Running mode
|
||||||
|
$AOT_BUILD_OPTIONS,
|
||||||
|
$CLASSIC_INTERP_BUILD_OPTIONS,
|
||||||
|
$FAST_INTERP_BUILD_OPTIONS,
|
||||||
|
$FAST_JIT_BUILD_OPTIONS,
|
||||||
|
$LLVM_LAZY_JIT_BUILD_OPTIONS,
|
||||||
|
$LLVM_EAGER_JIT_BUILD_OPTIONS,
|
||||||
|
$MULTI_TIER_JIT_BUILD_OPTIONS,
|
||||||
|
]
|
||||||
|
os: [ubuntu-20.04, ubuntu-22.04]
|
||||||
|
wasi_sdk_release:
|
||||||
|
[
|
||||||
|
"https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-20/wasi-sdk-20.0-linux.tar.gz",
|
||||||
|
]
|
||||||
|
wabt_release:
|
||||||
|
[
|
||||||
|
"https://github.com/WebAssembly/wabt/releases/download/1.0.31/wabt-1.0.31-ubuntu.tar.gz",
|
||||||
|
]
|
||||||
|
include:
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2004.outputs.cache_key }}
|
||||||
|
- os: ubuntu-22.04
|
||||||
|
llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
|
||||||
|
exclude:
|
||||||
|
- make_options: $MULTI_TIER_JIT_BUILD_OPTIONS
|
||||||
|
sanitizer: asan
|
||||||
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Get LLVM libraries
|
||||||
|
id: retrieve_llvm_libs
|
||||||
|
if: (!endsWith(matrix.make_options, '_INTERP_BUILD_OPTIONS'))
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
./core/deps/llvm/build/bin
|
||||||
|
./core/deps/llvm/build/include
|
||||||
|
./core/deps/llvm/build/lib
|
||||||
|
./core/deps/llvm/build/libexec
|
||||||
|
./core/deps/llvm/build/share
|
||||||
|
key: ${{ matrix.llvm_cache_key }}
|
||||||
|
|
||||||
|
- name: Quit if cache miss
|
||||||
|
if: (!endsWith(matrix.make_options, '_INTERP_BUILD_OPTIONS')) && (steps.retrieve_llvm_libs.outputs.cache-hit != 'true')
|
||||||
|
run: echo "::error::can not get prebuilt llvm libraries" && exit 1
|
||||||
|
|
||||||
|
- name: download and install wabt
|
||||||
|
run: |
|
||||||
|
cd /opt
|
||||||
|
sudo wget ${{ matrix.wabt_release }}
|
||||||
|
sudo tar -xzf wabt-1.0.31-*.tar.gz
|
||||||
|
sudo mv wabt-1.0.31 wabt
|
||||||
|
- name: Build wamrc
|
||||||
|
if: (!endsWith(matrix.make_options, '_INTERP_BUILD_OPTIONS'))
|
||||||
|
run: |
|
||||||
|
mkdir build && cd build
|
||||||
|
cmake -D WAMR_BUILD_SANITIZER="${{matrix.sanitizer}}" ..
|
||||||
|
cmake --build . --config Release --parallel 4
|
||||||
|
working-directory: wamr-compiler
|
||||||
|
|
||||||
|
- name: Build Sample [wasm-c-api]
|
||||||
|
run: |
|
||||||
|
VERBOSE=1
|
||||||
|
cmake -S . -B build ${{ matrix.make_options }} -D WAMR_BUILD_SANITIZER="${{matrix.sanitizer}}"
|
||||||
|
cmake --build build --config Release --parallel 4
|
||||||
|
ctest --test-dir build --output-on-failure
|
||||||
|
working-directory: samples/wasm-c-api
|
||||||
|
|
||||||
|
build_samples_others:
|
||||||
|
needs: [build_iwasm]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-20.04, ubuntu-22.04]
|
||||||
|
wasi_sdk_release:
|
||||||
|
[
|
||||||
|
"https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-20/wasi-sdk-20.0-linux.tar.gz",
|
||||||
|
]
|
||||||
|
wabt_release:
|
||||||
|
[
|
||||||
|
"https://github.com/WebAssembly/wabt/releases/download/1.0.31/wabt-1.0.31-ubuntu.tar.gz",
|
||||||
|
]
|
||||||
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: download and install wasi-sdk
|
||||||
|
run: |
|
||||||
|
cd /opt
|
||||||
|
sudo wget ${{ matrix.wasi_sdk_release }}
|
||||||
|
sudo tar -xzf wasi-sdk-*.tar.gz
|
||||||
|
sudo mv wasi-sdk-20.0 wasi-sdk
|
||||||
|
- name: download and install wabt
|
||||||
|
run: |
|
||||||
|
cd /opt
|
||||||
|
sudo wget ${{ matrix.wabt_release }}
|
||||||
|
sudo tar -xzf wabt-1.0.31-*.tar.gz
|
||||||
|
sudo mv wabt-1.0.31 wabt
|
||||||
|
- name: Build Sample [basic]
|
||||||
|
run: |
|
||||||
|
cd samples/basic
|
||||||
|
./build.sh
|
||||||
|
./run.sh
|
||||||
|
- name: Build Sample [file]
|
||||||
|
run: |
|
||||||
|
cd samples/file
|
||||||
|
mkdir build && cd build
|
||||||
|
cmake ..
|
||||||
|
cmake --build . --config Release --parallel 4
|
||||||
|
./src/iwasm -f wasm-app/file.wasm -d .
|
||||||
|
- name: Build Sample [multi-thread]
|
||||||
|
run: |
|
||||||
|
cd samples/multi-thread
|
||||||
|
mkdir build && cd build
|
||||||
|
cmake ..
|
||||||
|
cmake --build . --config Release --parallel 4
|
||||||
|
./iwasm wasm-apps/test.wasm
|
||||||
|
- name: Build Sample [multi-module]
|
||||||
|
run: |
|
||||||
|
cd samples/multi-module
|
||||||
|
mkdir build && cd build
|
||||||
|
cmake ..
|
||||||
|
cmake --build . --config Release --parallel 4
|
||||||
|
./multi_module
|
||||||
|
- name: Build Sample [spawn-thread]
|
||||||
|
run: |
|
||||||
|
cd samples/spawn-thread
|
||||||
|
mkdir build && cd build
|
||||||
|
cmake ..
|
||||||
|
cmake --build . --config Release --parallel 4
|
||||||
|
./spawn_thread
|
||||||
|
- name: Build Sample [ref-types]
|
||||||
|
run: |
|
||||||
|
cd samples/ref-types
|
||||||
|
mkdir build && cd build
|
||||||
|
cmake ..
|
||||||
|
cmake --build . --config Release --parallel 4
|
||||||
|
./hello
|
||||||
|
- name: Build Sample [simple]
|
||||||
|
run: |
|
||||||
|
./build.sh -p host-interp
|
||||||
|
python3 ./sample_test_run.py $(pwd)/out
|
||||||
|
exit $?
|
||||||
|
working-directory: ./samples/simple
|
||||||
|
|
||||||
|
- name: Build Sample [wasi-threads]
|
||||||
|
run: |
|
||||||
|
cd samples/wasi-threads
|
||||||
|
mkdir build && cd build
|
||||||
|
cmake ..
|
||||||
|
cmake --build . --config Release --parallel 4
|
||||||
|
./iwasm wasm-apps/no_pthread.wasm
|
||||||
|
test:
|
||||||
|
needs:
|
||||||
|
[
|
||||||
|
build_iwasm,
|
||||||
|
build_llvm_libraries_on_ubuntu_2004,
|
||||||
|
build_llvm_libraries_on_ubuntu_2204,
|
||||||
|
build_wamrc,
|
||||||
|
]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-20.04, ubuntu-22.04]
|
||||||
|
sanitizer: ["", "ubsan", "asan"]
|
||||||
|
running_mode:
|
||||||
|
[
|
||||||
|
"classic-interp",
|
||||||
|
"fast-interp",
|
||||||
|
"jit",
|
||||||
|
"aot",
|
||||||
|
"fast-jit",
|
||||||
|
"multi-tier-jit",
|
||||||
|
]
|
||||||
|
test_option:
|
||||||
|
[
|
||||||
|
$DEFAULT_TEST_OPTIONS,
|
||||||
|
$MULTI_MODULES_TEST_OPTIONS,
|
||||||
|
$SIMD_TEST_OPTIONS,
|
||||||
|
$THREADS_TEST_OPTIONS,
|
||||||
|
$WASI_TEST_OPTIONS,
|
||||||
|
]
|
||||||
|
wasi_sdk_release:
|
||||||
|
[
|
||||||
|
"https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-20/wasi-sdk-20.0-linux.tar.gz",
|
||||||
|
]
|
||||||
|
include:
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2004.outputs.cache_key }}
|
||||||
|
ubuntu_version: "20.04"
|
||||||
|
- os: ubuntu-22.04
|
||||||
|
llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
|
||||||
|
ubuntu_version: "22.04"
|
||||||
|
exclude:
|
||||||
|
# uncompatiable modes and features
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
sanitizer: asan
|
||||||
|
# asan works only for aot now
|
||||||
|
- running_mode: "classic-interp"
|
||||||
|
sanitizer: asan
|
||||||
|
- running_mode: "fast-interp"
|
||||||
|
sanitizer: asan
|
||||||
|
- running_mode: "jit"
|
||||||
|
sanitizer: asan
|
||||||
|
- running_mode: "fast-jit"
|
||||||
|
sanitizer: asan
|
||||||
|
- running_mode: "multi-tier-jit"
|
||||||
|
sanitizer: asan
|
||||||
|
# classic-interp and fast-interp don't support simd
|
||||||
|
- running_mode: "classic-interp"
|
||||||
|
test_option: $SIMD_TEST_OPTIONS
|
||||||
|
- running_mode: "fast-interp"
|
||||||
|
test_option: $SIMD_TEST_OPTIONS
|
||||||
|
# aot and jit don't support multi module
|
||||||
|
- running_mode: "aot"
|
||||||
|
test_option: $MULTI_MODULES_TEST_OPTIONS
|
||||||
|
- running_mode: "jit"
|
||||||
|
test_option: $MULTI_MODULES_TEST_OPTIONS
|
||||||
|
# fast-jit doesn't support multi module, simd
|
||||||
|
- running_mode: "fast-jit"
|
||||||
|
test_option: $MULTI_MODULES_TEST_OPTIONS
|
||||||
|
- running_mode: "fast-jit"
|
||||||
|
test_option: $SIMD_TEST_OPTIONS
|
||||||
|
# multi-tier-jit doesn't support multi module, simd
|
||||||
|
- running_mode: "multi-tier-jit"
|
||||||
|
test_option: $MULTI_MODULES_TEST_OPTIONS
|
||||||
|
- running_mode: "multi-tier-jit"
|
||||||
|
test_option: $SIMD_TEST_OPTIONS
|
||||||
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: download and install wasi-sdk
|
||||||
|
if: matrix.test_option == '$WASI_TEST_OPTIONS'
|
||||||
|
run: |
|
||||||
|
cd /opt
|
||||||
|
sudo wget ${{ matrix.wasi_sdk_release }}
|
||||||
|
sudo tar -xzf wasi-sdk-*.tar.gz
|
||||||
|
sudo mv wasi-sdk-20.0 wasi-sdk
|
||||||
|
- name: set env variable(if llvm are used)
|
||||||
|
if: matrix.running_mode == 'aot' || matrix.running_mode == 'jit' || matrix.running_mode == 'multi-tier-jit'
|
||||||
|
run: echo "USE_LLVM=true" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: set env variable(if x86_32 test needed)
|
||||||
|
if: >
|
||||||
|
(matrix.test_option == '$DEFAULT_TEST_OPTIONS' || matrix.test_option == '$THREADS_TEST_OPTIONS'
|
||||||
|
|| matrix.test_option == '$WASI_TEST_OPTIONS')
|
||||||
|
&& matrix.running_mode != 'fast-jit' && matrix.running_mode != 'jit' && matrix.running_mode != 'multi-tier-jit'
|
||||||
|
run: echo "TEST_ON_X86_32=true" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: set sanitizer
|
||||||
|
run: echo "WAMR_BUILD_SANITIZER=${{ matrix.sanitizer }}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
#only download llvm libraries in jit and aot mode
|
||||||
|
- name: Get LLVM libraries
|
||||||
|
if: env.USE_LLVM == 'true'
|
||||||
|
id: retrieve_llvm_libs
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
./core/deps/llvm/build/bin
|
||||||
|
./core/deps/llvm/build/include
|
||||||
|
./core/deps/llvm/build/lib
|
||||||
|
./core/deps/llvm/build/libexec
|
||||||
|
./core/deps/llvm/build/share
|
||||||
|
key: ${{ matrix.llvm_cache_key }}
|
||||||
|
|
||||||
|
- name: Quit if cache miss
|
||||||
|
if: env.USE_LLVM == 'true' && steps.retrieve_llvm_libs.outputs.cache-hit != 'true'
|
||||||
|
run: echo "::error::can not get prebuilt llvm libraries" && exit 1
|
||||||
|
|
||||||
|
- name: install jq JSON processor
|
||||||
|
if: matrix.running_mode == 'aot' && matrix.test_option == '$WASI_TEST_OPTIONS'
|
||||||
|
run: sudo apt-get update && sudo apt install -y jq
|
||||||
|
|
||||||
|
- name: Build WASI thread tests
|
||||||
|
if: matrix.test_option == '$WASI_TEST_OPTIONS'
|
||||||
|
run: bash build.sh
|
||||||
|
working-directory: ./core/iwasm/libraries/lib-wasi-threads/test/
|
||||||
|
|
||||||
|
- name: build socket api tests
|
||||||
|
if: matrix.test_option == '$WASI_TEST_OPTIONS'
|
||||||
|
run: bash build.sh
|
||||||
|
working-directory: ./core/iwasm/libraries/lib-socket/test/
|
||||||
|
|
||||||
|
- name: run tests
|
||||||
|
timeout-minutes: 10
|
||||||
|
run: ./test_wamr.sh ${{ matrix.test_option }} -t ${{ matrix.running_mode }}
|
||||||
|
working-directory: ./tests/wamr-test-suites
|
||||||
|
|
||||||
|
#only install x32 support libraries when to run x86_32 cases
|
||||||
|
- name: install x32 support libraries
|
||||||
|
if: env.TEST_ON_X86_32 == 'true'
|
||||||
|
run:
|
||||||
|
# Add another apt repository as some packages cannot
|
||||||
|
# be downloaded with the github default repository
|
||||||
|
sudo curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc &&
|
||||||
|
sudo apt-add-repository https://packages.microsoft.com/ubuntu/${{ matrix.ubuntu_version }}/prod &&
|
||||||
|
sudo apt-get update &&
|
||||||
|
sudo apt install -y g++-multilib lib32gcc-9-dev
|
||||||
|
|
||||||
|
- name: run tests x86_32
|
||||||
|
timeout-minutes: 10
|
||||||
|
if: env.TEST_ON_X86_32 == 'true'
|
||||||
|
run: ./test_wamr.sh ${{ env.X86_32_TARGET_TEST_OPTIONS }} ${{ matrix.test_option }} -t ${{ matrix.running_mode }}
|
||||||
|
working-directory: ./tests/wamr-test-suites
|
|
@ -127,6 +127,28 @@ else ()
|
||||||
unset (LLVM_AVAILABLE_LIBS)
|
unset (LLVM_AVAILABLE_LIBS)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
# Sanitizers
|
||||||
|
|
||||||
|
set(WAMR_BUILD_SANITIZER $ENV{WAMR_BUILD_SANITIZER})
|
||||||
|
|
||||||
|
if (NOT DEFINED WAMR_BUILD_SANITIZER)
|
||||||
|
set(WAMR_BUILD_SANITIZER "")
|
||||||
|
elseif (WAMR_BUILD_SANITIZER STREQUAL "ubsan")
|
||||||
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -O0 -fno-omit-frame-pointer -fsanitize=undefined -fno-sanitize-recover=all -fno-sanitize=alignment" )
|
||||||
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=undefined")
|
||||||
|
elseif (WAMR_BUILD_SANITIZER STREQUAL "asan")
|
||||||
|
if (NOT WAMR_BUILD_JIT EQUAL 1)
|
||||||
|
set (ASAN_OPTIONS "verbosity=2 debug=true ")
|
||||||
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -O0 -fno-omit-frame-pointer -fsanitize=address -fno-sanitize-recover=all" )
|
||||||
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address")
|
||||||
|
endif()
|
||||||
|
elseif (WAMR_BUILD_SANITIZER STREQUAL "tsan")
|
||||||
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -O0 -fno-omit-frame-pointer -fsanitize=thread -fno-sanitize-recover=all" )
|
||||||
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=thread")
|
||||||
|
elseif (NOT (WAMR_BUILD_SANITIZER STREQUAL "") )
|
||||||
|
message(SEND_ERROR "Unsupported sanitizer: ${WAMR_BUILD_SANITIZER}")
|
||||||
|
endif()
|
||||||
|
|
||||||
########################################
|
########################################
|
||||||
|
|
||||||
message ("-- Build Configurations:")
|
message ("-- Build Configurations:")
|
||||||
|
|
|
@ -4212,6 +4212,12 @@ static V128FuncPtr invokeNative_V128 = (V128FuncPtr)(uintptr_t)invokeNative;
|
||||||
|| defined(BUILD_TARGET_RISCV64_LP64) */
|
|| defined(BUILD_TARGET_RISCV64_LP64) */
|
||||||
#endif /* end of defined(_WIN32) || defined(_WIN32_) */
|
#endif /* end of defined(_WIN32) || defined(_WIN32_) */
|
||||||
|
|
||||||
|
/* ASAN is not designed to work with custom stack unwind or other low-level \
|
||||||
|
things. > Ignore a function that does some low-level magic. (e.g. walking \
|
||||||
|
through the thread's stack bypassing the frame boundaries) */
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
__attribute__((no_sanitize_address))
|
||||||
|
#endif
|
||||||
bool
|
bool
|
||||||
wasm_runtime_invoke_native(WASMExecEnv *exec_env, void *func_ptr,
|
wasm_runtime_invoke_native(WASMExecEnv *exec_env, void *func_ptr,
|
||||||
const WASMType *func_type, const char *signature,
|
const WASMType *func_type, const char *signature,
|
||||||
|
|
|
@ -3986,6 +3986,12 @@ wasm_interp_call_func_bytecode(WASMModuleInstance *module,
|
||||||
}
|
}
|
||||||
|
|
||||||
#if WASM_ENABLE_FAST_JIT != 0
|
#if WASM_ENABLE_FAST_JIT != 0
|
||||||
|
/* ASAN is not designed to work with custom stack unwind or other low-level \
|
||||||
|
things. > Ignore a function that does some low-level magic. (e.g. walking \
|
||||||
|
through the thread's stack bypassing the frame boundaries) */
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
__attribute__((no_sanitize_address))
|
||||||
|
#endif
|
||||||
static void
|
static void
|
||||||
fast_jit_call_func_bytecode(WASMModuleInstance *module_inst,
|
fast_jit_call_func_bytecode(WASMModuleInstance *module_inst,
|
||||||
WASMExecEnv *exec_env,
|
WASMExecEnv *exec_env,
|
||||||
|
|
|
@ -492,6 +492,12 @@ destroy_stack_guard_pages()
|
||||||
}
|
}
|
||||||
#endif /* end of WASM_DISABLE_STACK_HW_BOUND_CHECK == 0 */
|
#endif /* end of WASM_DISABLE_STACK_HW_BOUND_CHECK == 0 */
|
||||||
|
|
||||||
|
/* ASAN is not designed to work with custom stack unwind or other low-level \
|
||||||
|
things. > Ignore a function that does some low-level magic. (e.g. walking \
|
||||||
|
through the thread's stack bypassing the frame boundaries) */
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
__attribute__((no_sanitize_address))
|
||||||
|
#endif
|
||||||
static void
|
static void
|
||||||
mask_signals(int how)
|
mask_signals(int how)
|
||||||
{
|
{
|
||||||
|
@ -506,6 +512,12 @@ mask_signals(int how)
|
||||||
static os_thread_local_attribute struct sigaction prev_sig_act_SIGSEGV;
|
static os_thread_local_attribute struct sigaction prev_sig_act_SIGSEGV;
|
||||||
static os_thread_local_attribute struct sigaction prev_sig_act_SIGBUS;
|
static os_thread_local_attribute struct sigaction prev_sig_act_SIGBUS;
|
||||||
|
|
||||||
|
/* ASAN is not designed to work with custom stack unwind or other low-level \
|
||||||
|
things. > Ignore a function that does some low-level magic. (e.g. walking \
|
||||||
|
through the thread's stack bypassing the frame boundaries) */
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
__attribute__((no_sanitize_address))
|
||||||
|
#endif
|
||||||
static void
|
static void
|
||||||
signal_callback(int sig_num, siginfo_t *sig_info, void *sig_ucontext)
|
signal_callback(int sig_num, siginfo_t *sig_info, void *sig_ucontext)
|
||||||
{
|
{
|
||||||
|
|
|
@ -135,24 +135,6 @@ if (WAMR_BUILD_TARGET MATCHES "X86_.*" OR WAMR_BUILD_TARGET STREQUAL "AMD_64")
|
||||||
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mindirect-branch-register")
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mindirect-branch-register")
|
||||||
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mindirect-branch-register")
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mindirect-branch-register")
|
||||||
# UNDEFINED BEHAVIOR, refer to https://en.cppreference.com/w/cpp/language/ub
|
# UNDEFINED BEHAVIOR, refer to https://en.cppreference.com/w/cpp/language/ub
|
||||||
if(CMAKE_BUILD_TYPE STREQUAL "Debug" AND NOT WAMR_BUILD_JIT EQUAL 1)
|
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=undefined \
|
|
||||||
-fno-sanitize=bounds,bounds-strict,alignment \
|
|
||||||
-fno-sanitize-recover")
|
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=undefined \
|
|
||||||
-fno-sanitize=bounds,bounds-strict,alignment \
|
|
||||||
-fno-sanitize-recover")
|
|
||||||
endif()
|
|
||||||
else ()
|
|
||||||
# UNDEFINED BEHAVIOR, refer to https://en.cppreference.com/w/cpp/language/ub
|
|
||||||
if(CMAKE_BUILD_TYPE STREQUAL "Debug" AND NOT WAMR_BUILD_JIT EQUAL 1)
|
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=undefined \
|
|
||||||
-fno-sanitize=bounds,alignment \
|
|
||||||
-fno-sanitize-recover")
|
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=undefined \
|
|
||||||
-fno-sanitize=bounds,alignment \
|
|
||||||
-fno-sanitize-recover")
|
|
||||||
endif()
|
|
||||||
endif ()
|
endif ()
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
|
|
@ -87,15 +87,6 @@ endif()
|
||||||
set(WAMR_ROOT_DIR ${CMAKE_CURRENT_LIST_DIR}/../..)
|
set(WAMR_ROOT_DIR ${CMAKE_CURRENT_LIST_DIR}/../..)
|
||||||
include (${WAMR_ROOT_DIR}/build-scripts/runtime_lib.cmake)
|
include (${WAMR_ROOT_DIR}/build-scripts/runtime_lib.cmake)
|
||||||
|
|
||||||
if (NOT DEFINED SANITIZER)
|
|
||||||
set(SANITIZER "")
|
|
||||||
elseif (SANITIZER STREQUAL "ubsan")
|
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -O2 -fno-omit-frame-pointer -fsanitize=undefined -fno-sanitize-recover=all -fno-sanitize=alignment" )
|
|
||||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=undefined")
|
|
||||||
elseif (NOT (SANITIZER STREQUAL "") )
|
|
||||||
message(SEND_ERROR "Unsupported sanitizer: ${SANITIZER}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_library(vmlib STATIC ${WAMR_RUNTIME_LIB_SOURCE})
|
add_library(vmlib STATIC ${WAMR_RUNTIME_LIB_SOURCE})
|
||||||
if (MSVC)
|
if (MSVC)
|
||||||
target_compile_definitions(vmlib PRIVATE WASM_API_EXTERN=)
|
target_compile_definitions(vmlib PRIVATE WASM_API_EXTERN=)
|
||||||
|
|
|
@ -628,7 +628,7 @@ function standalone_test()
|
||||||
|
|
||||||
function build_iwasm_with_cfg()
|
function build_iwasm_with_cfg()
|
||||||
{
|
{
|
||||||
echo "Build iwasm with compile flags with " $* " for spec test" \
|
echo "Build iwasm with compile flags " $* " for spec test" \
|
||||||
| tee -a ${REPORT_DIR}/spec_test_report.txt
|
| tee -a ${REPORT_DIR}/spec_test_report.txt
|
||||||
|
|
||||||
if [[ ${SGX_OPT} == "--sgx" ]];then
|
if [[ ${SGX_OPT} == "--sgx" ]];then
|
||||||
|
@ -754,6 +754,23 @@ function trigger()
|
||||||
EXTRA_COMPILE_FLAGS+=" -DWAMR_BUILD_LIB_WASI_THREADS=1"
|
EXTRA_COMPILE_FLAGS+=" -DWAMR_BUILD_LIB_WASI_THREADS=1"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "SANITIZER IS" $WAMR_BUILD_SANITIZER
|
||||||
|
|
||||||
|
if [[ "$WAMR_BUILD_SANITIZER" == "ubsan" ]]; then
|
||||||
|
echo "Setting run with ubsan"
|
||||||
|
EXTRA_COMPILE_FLAGS+=" -DWAMR_BUILD_SANITIZER=ubsan"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$WAMR_BUILD_SANITIZER" == "asan" ]]; then
|
||||||
|
echo "Setting run with asan"
|
||||||
|
EXTRA_COMPILE_FLAGS+=" -DWAMR_BUILD_SANITIZER=asan"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$WAMR_BUILD_SANITIZER" == "tsan" ]]; then
|
||||||
|
echo "Setting run with tsan"
|
||||||
|
EXTRA_COMPILE_FLAGS+=" -DWAMR_BUILD_SANITIZER=tsan"
|
||||||
|
fi
|
||||||
|
|
||||||
for t in "${TYPE[@]}"; do
|
for t in "${TYPE[@]}"; do
|
||||||
case $t in
|
case $t in
|
||||||
"classic-interp")
|
"classic-interp")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user