Skip to content

Commit 9667733

Browse files
authored
travis: Update travis script message output
1 parent 2fdd06a commit 9667733

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.travis/build.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,21 +38,25 @@ def embarc_makefile(paths): # to confirm the file is a embarc makefile
3838
os.chdir(os.path.join(applications_path,"embarc_osp"))
3939
get_makefile(osp_application)
4040
embarc_makefile(make_path)
41+
4142
for (k,v) in make_path.items():
4243
result[k] = 0
43-
print("application[%s]=" %k,v)
44+
print("Application[%s]=" %k,v)
4445
pathin = v.replace("\\", "/")
4546
os.chdir(pathin)
46-
print("make configuration: ",sys.argv[1])
47-
print("start compile")
47+
print("Make Configuration: ",sys.argv[1])
48+
print("Start compile this application")
49+
sys.stdout.flush()
50+
4851
os.system("make "+sys.argv[1]+" clean")
4952

5053
if os.system("make "+sys.argv[1]+" -k") != 0:
5154

5255
result[k] = 1
5356
pathout = cwd_path
5457
os.chdir(pathout)
55-
print("Compilation result")
58+
59+
print("\r\nCompilation result as follows")
5660
print(result)
5761
for (k,v) in result.items():
5862
if v == 1:

0 commit comments

Comments
 (0)