Files
kunlun/build/build_time_cost_test.py

25 lines
578 B
Python
Raw Normal View History

2024-12-14 15:43:03 +08:00
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
import sys
import time
import shutil
2024-12-14 15:43:03 +08:00
if __name__ == "__main__":
time_start=time.time()
if(len(sys.argv)>2):
cmd=f"{' '.join(sys.argv[1:])} > build_log.log"
os.system("python3 ../clear_output.py > /dev/null")
path="../tools/gen_img/customer"
if os.path.exists(path):
shutil.rmtree(path)
else:
cmd=' '.join(sys.argv[1:])
2024-12-14 15:43:03 +08:00
print(cmd)
os.system(cmd)
time_end=time.time()
print(f"build end, cost {time_end-time_start} s")
print(time.asctime())