mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 15:05:19 +00:00
![Wenyong Huang](/assets/img/avatar_default.png)
Refactor CI rules: - merge ubuntu/macos/android into one job file - add job file to test spec cases - add compilation for lazy jit, debug interpreter and debug aot - add compilation for performance profile, dump call stack and mini-loader - re-org llvm build script to build lldb Signed-off-by: Wenyong Huang <wenyong.huang@intel.com>
15 lines
346 B
Python
15 lines
346 B
Python
#!/usr/bin/env python3
|
|
#
|
|
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
#
|
|
|
|
import pathlib
|
|
import subprocess
|
|
import sys
|
|
|
|
script = (
|
|
pathlib.Path(__file__).parent.joinpath("../build-scripts/build_llvm.py").resolve()
|
|
)
|
|
subprocess.check_call([sys.executable, script.name])
|