您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
21 行
403 B
21 行
403 B
import sys
|
|
|
|
from .yamato_utils import get_base_path, run_standalone_build
|
|
|
|
|
|
def main():
|
|
base_path = get_base_path()
|
|
print(f"Running in base path {base_path}")
|
|
|
|
returncode = run_standalone_build(base_path, verbose=True)
|
|
|
|
if returncode == 0:
|
|
print("Test run SUCCEEDED!")
|
|
else:
|
|
print("Test run FAILED!")
|
|
|
|
sys.exit(returncode)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|