Skip to content

Commit

Permalink
[Tools] Add more template detect in buildbot.
Browse files Browse the repository at this point in the history
  • Loading branch information
BernardXiong committed Nov 3, 2017
1 parent 75b46cf commit a9a02d5
Showing 1 changed file with 27 additions and 8 deletions.
35 changes: 27 additions & 8 deletions tools/buildbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ def usage():
print '%s clean -- clean all bsp' % os.path.basename(sys.argv[0])
print '%s project -- update all prject files' % os.path.basename(sys.argv[0])

BSP_ROOT = '../bsp'
BSP_ROOT = os.path.join("..", "bsp")

if len(sys.argv) != 2:
usage()
sys.exit(0)
usage()
sys.exit(0)

# get command options
command = ''
Expand All @@ -18,17 +19,35 @@ def usage():
elif sys.argv[1] == 'clean':
command = ' -c'
elif sys.argv[1] == 'project':
command = ' --target=mdk -s'


projects = os.listdir(BSP_ROOT)
for item in projects:
project_dir = os.path.join(BSP_ROOT, item)


if os.path.isfile(os.path.join(project_dir, 'template.Uv2')):
print ('prepare MDK3 project file on ' + project_dir)
command = ' --target=mdk -s'

os.system('scons --directory=' + project_dir + command)

if os.path.isfile(os.path.join(project_dir, 'template.uvproj')):
print ('prepare MDK project file on ' + project_dir)
print ('prepare MDK4 project file on ' + project_dir)
command = ' --target=mdk4 -s'

os.system('scons --directory=' + project_dir + command)


if os.path.isfile(os.path.join(project_dir, 'template.uvprojx')):
print ('prepare MDK5 project file on ' + project_dir)
command = ' --target=mdk5 -s'

os.system('scons --directory=' + project_dir + command)

if os.path.isfile(os.path.join(project_dir, 'template.ewp')):
print ('prepare IAR project file on ' + project_dir)
command = ' --target=iar -s'

os.system('scons --directory=' + project_dir + command)

sys.exit(0)
else:
usage()
Expand Down

0 comments on commit a9a02d5

Please sign in to comment.