mirror of https://github.com/axmolengine/axmol.git
add wp8 build node
This commit is contained in:
parent
27155afe43
commit
1b053a6eb2
|
@ -85,6 +85,9 @@ def do_build_slaves():
|
|||
slave_build_scripts = jenkins_script_path + "mac-build.sh"
|
||||
elif(node_name == 'linux_centos' or node_name == 'linux' or node_name == 'linux_bak'):
|
||||
slave_build_scripts = jenkins_script_path + "linux-build.sh"
|
||||
elif(node_name == 'wp8'):
|
||||
if(branch == 'v3'):
|
||||
slave_build_scripts = jenkins_script_path + "wp8-v3.bat"
|
||||
|
||||
ret = os.system(slave_build_scripts)
|
||||
|
||||
|
|
|
@ -179,6 +179,9 @@ def do_build_slaves():
|
|||
slave_build_scripts = jenkins_script_path + "mac-build.sh"
|
||||
elif(node_name == 'linux_centos' or node_name == 'linux' or node_name == 'linux_bak'):
|
||||
slave_build_scripts = jenkins_script_path + "linux-build.sh"
|
||||
elif(node_name == 'wp8'):
|
||||
if(branch == 'v3'):
|
||||
slave_build_scripts = jenkins_script_path + "wp8-v3.bat"
|
||||
|
||||
ret = os.system(slave_build_scripts)
|
||||
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
call "%VS120COMNTOOLS%vsvars32.bat"
|
||||
msbuild build\cocos2d-wp8.sln /t:Build /p:Platform="Win32" /p:Configuration="Debug" /m
|
||||
msbuild build\cocos2d-win8.1-universal.sln /t:Build /p:Platform="Win32" /p:Configuration="Debug" /m
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
call "%VS120COMNTOOLS%vsvars32.bat"
|
||||
msbuild build\cocos2d-wp8.sln /t:Build /p:Platform="Win32" /p:Configuration="Debug" /m
|
Loading…
Reference in New Issue