| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757 |
- # Copyright (C) 2023 Intel Corporation. All rights reserved.
- # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- name: nightly_run
- on:
- pull_request:
- types:
- - opened
- - synchronize
- # running nightly pipeline if you're changing it
- # stress tests are run only in nightly at the moment, so running them in they are changed
- paths:
- - ".github/workflows/nightly_run.yml"
- - "core/iwasm/libraries/lib-wasi-threads/stress-test/**"
- # 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,
- ]
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- include:
- - os: ubuntu-20.04
- llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2004.outputs.cache_key }}
- steps:
- - name: checkout
- uses: actions/checkout@v4
- # 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@v4
- 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,
- ]
- 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",
- "-DWAMR_BUILD_MEMORY64=1",
- ]
- os: [ubuntu-20.04]
- platform: [android, linux]
- exclude:
- # incompatible feature and platform
- # incompatible mode and feature
- # MULTI_MODULE only on INTERP mode and AOT mode
- - 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"
- # Memory64 only on CLASSIC INTERP mode, and only on 64-bit platform
- - make_options_feature: "-DWAMR_BUILD_MEMORY64=1"
- platform: android
- - make_options_run_mode: $AOT_BUILD_OPTIONS
- make_options_feature: "-DWAMR_BUILD_MEMORY64=1"
- - make_options_run_mode: $FAST_INTERP_BUILD_OPTIONS
- make_options_feature: "-DWAMR_BUILD_MEMORY64=1"
- - make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
- make_options_feature: "-DWAMR_BUILD_MEMORY64=1"
- - make_options_run_mode: $LLVM_LAZY_JIT_BUILD_OPTIONS
- make_options_feature: "-DWAMR_BUILD_MEMORY64=1"
- - make_options_run_mode: $LLVM_EAGER_JIT_BUILD_OPTIONS
- make_options_feature: "-DWAMR_BUILD_MEMORY64=1"
- - make_options_run_mode: $MULTI_TIER_JIT_BUILD_OPTIONS
- make_options_feature: "-DWAMR_BUILD_MEMORY64=1"
- # Fast-JIT and Multi-Tier-JIT mode don't support android
- - make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
- platform: android
- - make_options_run_mode: $MULTI_TIER_JIT_BUILD_OPTIONS
- platform: android
- # LLVM JIT pre-built binary wasn't compiled by Android NDK
- # and isn't available for android
- - make_options_run_mode: $LLVM_LAZY_JIT_BUILD_OPTIONS
- platform: android
- - make_options_run_mode: $LLVM_EAGER_JIT_BUILD_OPTIONS
- platform: android
- include:
- - os: ubuntu-20.04
- llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2004.outputs.cache_key }}
- steps:
- - name: checkout
- uses: actions/checkout@v4
- # 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@v4
- 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 for linux
- if: matrix.platform == 'linux'
- 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 }}
- - name: Build iwasm for android
- if: matrix.platform == 'android'
- run: |
- mkdir build && cd build
- cmake .. ${{ matrix.make_options_run_mode }} ${{ matrix.make_options_feature }} \
- -DWAMR_BUILD_TARGET=X86_64
- 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",
- "-DWAMR_BUILD_MEMORY64=1",
- ]
- exclude:
- # incompatible feature and platform
- # incompatible mode and feature
- # MULTI_MODULE only on INTERP mode and AOT 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"
- # Memory64 only on CLASSIC INTERP mode
- - make_options_run_mode: $FAST_INTERP_BUILD_OPTIONS
- make_options_feature: "-DWAMR_BUILD_MEMORY64=1"
- - make_options_run_mode: $FAST_JIT_BUILD_OPTIONS
- make_options_feature: "-DWAMR_BUILD_MEMORY64=1"
- steps:
- - name: checkout
- uses: actions/checkout@v3
- - name: Install dependencies
- uses: nick-fields/retry@v2
- with:
- timeout_minutes: 10
- max_attempts: 3
- command: apt update && apt install -y make g++-4.8 gcc-4.8 wget git
- on_retry_command: sudo rm -r /var/lib/apt/lists/*
- - 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_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]
- 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 }}
- exclude:
- - make_options: $MULTI_TIER_JIT_BUILD_OPTIONS
- sanitizer: asan
- steps:
- - name: checkout
- uses: actions/checkout@v4
- - name: Get LLVM libraries
- id: retrieve_llvm_libs
- if: (!endsWith(matrix.make_options, '_INTERP_BUILD_OPTIONS'))
- uses: actions/cache@v4
- 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}}" \
- -D WAMR_BUILD_QUICK_AOT_ENTRY=0
- 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,
- build_llvm_libraries_on_ubuntu_2004,
- build_wamrc,
- ]
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os: [ubuntu-20.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 }}
- steps:
- - name: checkout
- uses: actions/checkout@v4
- - name: download and install wasi-sdk
- run: |
- cd /opt
- sudo wget ${{ matrix.wasi_sdk_release }}
- sudo tar -xzf wasi-sdk-*.tar.gz
- sudo ln -sf 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 ln -sf wabt-1.0.31 wabt
- - name: Get LLVM libraries
- id: retrieve_llvm_libs
- uses: actions/cache@v4
- 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: Build wamrc
- 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 [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 .. -DWAMR_BUILD_AOT=1
- cmake --build . --config Release --parallel 4
- ./multi_module mC.wasm
- ./multi_module mC.aot
- - 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 [wasi-threads]
- run: |
- cd samples/wasi-threads
- mkdir build && cd build
- cmake ..
- cmake --build . --config Release --parallel 4
- ./iwasm wasm-apps/no_pthread.wasm
- - name: Build Sample [shared-module]
- run: |
- cd samples/shared-module
- ./build.sh
- ./run.sh
- - name: Build Sample [terminate]
- run: |
- cd samples/terminate
- ./build.sh
- ./run.sh
- - name: Build Sample [native-stack-overflow]
- run: |
- cd samples/native-stack-overflow
- ./build.sh
- ./run.sh test1
- ./run.sh test2
- - name: Build Sample [native-lib]
- run: |
- mkdir build && cd build
- cmake ..
- cmake --build . --config Release --parallel 4
- ./iwasm --native-lib=./libtest_add.so --native-lib=./libtest_sqrt.so --native-lib=./libtest_hello.so --native-lib=./libtest_hello2.so wasm-app/test.wasm
- working-directory: ./samples/native-lib
- - name: checkout wamr-app-framework
- run: git clone https://github.com/bytecodealliance/wamr-app-framework.git
- - name: download wamr-app-framework dependencies
- run: LVGL=0 LV_DRIVERS=0 ./download.sh
- working-directory: ./wamr-app-framework/deps
- - name: Build Sample [simple]
- run: |
- ./build.sh -p host-interp
- python3 ./sample_test_run.py $(pwd)/out
- exit $?
- working-directory: ./wamr-app-framework/samples/simple
- 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", "tsan"]
- 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:
- # incompatible modes and features
- - os: ubuntu-20.04
- sanitizer: tsan
- # 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
- - running_mode: "classic-interp"
- sanitizer: tsan
- - running_mode: "jit"
- sanitizer: tsan
- - running_mode: "fast-jit"
- sanitizer: tsan
- - running_mode: "multi-tier-jit"
- sanitizer: tsan
- # 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
- # llvm jit doesn't support multi module
- - 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@v4
- - 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
- # It is a temporary solution until new wasi-sdk that includes bug fixes is released
- - name: build wasi-libc from source
- if: matrix.test_option == '$WASI_TEST_OPTIONS'
- run: |
- git clone https://github.com/WebAssembly/wasi-libc
- cd wasi-libc
- make -j AR=/opt/wasi-sdk/bin/llvm-ar NM=/opt/wasi-sdk/bin/llvm-nm CC=/opt/wasi-sdk/bin/clang THREAD_MODEL=posix
- echo "SYSROOT_PATH=$PWD/sysroot" >> $GITHUB_ENV
- - 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 additional tsan options
- run: |
- echo "TSAN_OPTIONS=suppressions=$PWD/tsan_suppressions.txt" >> $GITHUB_ENV
- sudo sysctl vm.mmap_rnd_bits=28
- working-directory: tests/wamr-test-suites
- #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@v4
- 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 --sysroot "$SYSROOT_PATH"
- working-directory: ./core/iwasm/libraries/lib-wasi-threads/test/
- - name: Build WASI thread stress tests
- if: matrix.test_option == '$WASI_TEST_OPTIONS'
- run: bash build.sh --sysroot "$SYSROOT_PATH"
- working-directory: ./core/iwasm/libraries/lib-wasi-threads/stress-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: 40
- run: ./test_wamr.sh ${{ matrix.test_option }} -t ${{ matrix.running_mode }} -T "${{ matrix.sanitizer }}"
- 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: 40
- 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
|