Fetch the repository succeeded.
This action will force synchronization from OpenHarmony-LoongArch-L1/build_lite, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright (c) 2020 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import os
import sys
import subprocess
import argparse
import shlex
from tempfile import NamedTemporaryFile
from shutil import copyfile
from datetime import datetime
def cmd_exec(command, temp_file, error_log_path):
start_time = datetime.now().replace(microsecond=0)
cmd = shlex.split(command)
proc = subprocess.Popen(cmd,
stdout=temp_file,
stderr=temp_file,
encoding='utf-8')
proc.wait()
ret_code = proc.returncode
if ret_code != 0:
temp_file.close()
copyfile(temp_file.name, error_log_path)
os.remove(temp_file.name)
return ret_code
end_time = datetime.now().replace(microsecond=0)
temp_file.write(f'cmd:{command}\ncost time:{end_time-start_time}\n')
return ret_code
def main():
parser = argparse.ArgumentParser()
parser.add_argument('--path', help='Build path.')
parser.add_argument('--prebuilts', help='Build prebuilts.')
parser.add_argument('--command', help='Build command.')
parser.add_argument('--enable', help='enable python.', nargs='*')
parser.add_argument('--target_dir', nargs=1)
parser.add_argument('--out_dir', nargs=1)
args = parser.parse_args()
if args.enable:
if args.enable[0] == 'false':
return
if args.path:
curr_dir = os.getcwd()
os.chdir(args.path)
temp_file = NamedTemporaryFile(mode='wt', delete=False)
if args.prebuilts:
status = cmd_exec(args.prebuilts, temp_file, args.out_dir[0])
if status != 0:
return status
if args.command:
if '&&' in args.command:
command = args.command.split('&&')
for data in command:
status = cmd_exec(data, temp_file, args.out_dir[0])
if status != 0:
return status
else:
status = cmd_exec(args.command, temp_file, args.out_dir[0])
if status != 0:
return status
temp_file.close()
copyfile(temp_file.name, args.target_dir[0])
os.remove(temp_file.name)
os.chdir(curr_dir)
return 0
if __name__ == '__main__':
sys.exit(main())
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。