mirror of https://github.com/axmolengine/axmol.git
add cocos-console-test.py to tools/jenkins-scripts/
This commit is contained in:
parent
ffc541609d
commit
17ba28de2a
|
@ -0,0 +1,72 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
#create new project by cocos-console
|
||||||
|
#build new project and run
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
|
project_types = ['cpp', 'lua']
|
||||||
|
PROJ_SUFFIX = 'Proj'
|
||||||
|
phonePlats = ['mac','ios','android']
|
||||||
|
|
||||||
|
cocos_console_dir = 'tools/cocos2d-console/bin/'
|
||||||
|
|
||||||
|
#now cocos2d-console suport different run on Platforms, e.g: only run android on win
|
||||||
|
runSupport = {
|
||||||
|
'darwin' : [1, 1, 1],
|
||||||
|
'win' : [0, 0, 1],
|
||||||
|
'linux' : [0, 0, 1]
|
||||||
|
}
|
||||||
|
|
||||||
|
curPlat = sys.platform
|
||||||
|
if curPlat.find('linux') >= 0:
|
||||||
|
curPlat = 'linux'
|
||||||
|
elif curPlat.find('darwin') >= 0:
|
||||||
|
curPlat = 'darwin'
|
||||||
|
else:
|
||||||
|
curPlat = 'win'
|
||||||
|
print 'current platform is:', curPlat
|
||||||
|
|
||||||
|
def clean_project():
|
||||||
|
for proj in project_types:
|
||||||
|
cmd = 'rm -rf '+proj+PROJ_SUFFIX
|
||||||
|
os.system(cmd)
|
||||||
|
|
||||||
|
def create_project():
|
||||||
|
print 'will create_project: '
|
||||||
|
idx = 0
|
||||||
|
for proj in project_types:
|
||||||
|
print 'proj: ', proj
|
||||||
|
cmd = './'+cocos_console_dir+'cocos new -l '+proj+' '+proj+PROJ_SUFFIX
|
||||||
|
print proj,'cmd:',cmd
|
||||||
|
idx += 1
|
||||||
|
info_create = os.system(cmd) #call cmd on win is diff
|
||||||
|
print 'create project',proj,' is:', not info_create
|
||||||
|
def build_run():
|
||||||
|
print 'will build and run'
|
||||||
|
for proj in project_types:
|
||||||
|
idx = 0
|
||||||
|
for phone in phonePlats:
|
||||||
|
cmd = './'+cocos_console_dir+'cocos run -p '+phone+' -s '+proj+PROJ_SUFFIX
|
||||||
|
print proj,'cmd:',cmd
|
||||||
|
if runSupport[curPlat][idx]:
|
||||||
|
info_run = os.system(cmd)
|
||||||
|
print 'run project', proj, 'is:', not info_run
|
||||||
|
idx += 1
|
||||||
|
|
||||||
|
def main():
|
||||||
|
clean_project()
|
||||||
|
create_project()
|
||||||
|
build_run()
|
||||||
|
|
||||||
|
# -------------- main --------------
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys_ret = 0
|
||||||
|
try:
|
||||||
|
sys_ret = main()
|
||||||
|
except:
|
||||||
|
traceback.print_exc()
|
||||||
|
sys_ret = 1
|
||||||
|
finally:
|
||||||
|
sys.exit(sys_ret)
|
||||||
|
|
Loading…
Reference in New Issue