mirror of https://github.com/axmolengine/axmol.git
Merge pull request #7433 from heliclei/check-build-size
check libcpp-empty-test.so size after successful build
This commit is contained in:
commit
e3b149deda
|
@ -201,6 +201,12 @@ def main():
|
||||||
local_apk = sample_dir + 'bin/CppTests-debug.apk'
|
local_apk = sample_dir + 'bin/CppTests-debug.apk'
|
||||||
backup_apk = os.environ['BACKUP_PATH'] + 'CppTests_' + str(pr_num) + '.apk'
|
backup_apk = os.environ['BACKUP_PATH'] + 'CppTests_' + str(pr_num) + '.apk'
|
||||||
os.system('cp ' + local_apk + ' ' + backup_apk)
|
os.system('cp ' + local_apk + ' ' + backup_apk)
|
||||||
|
ret = os.system("python build/android-build.py -p 10 -b release cpp-empty-test")
|
||||||
|
if(ret == 0):
|
||||||
|
_path = 'tests/cpp-empty-test/proj.android/libs/armeabi/libcpp_empty_test.so'
|
||||||
|
filesize = os.path.getsize(_path)
|
||||||
|
pr_desc = pr_desc + '<br /><h3>size of libcpp_empty_test.so is:' + str(filesize/1024) + 'kb</h3>'
|
||||||
|
set_description(pr_desc, target_url)
|
||||||
elif(node_name == 'win32_win7'):
|
elif(node_name == 'win32_win7'):
|
||||||
ret = subprocess.call('"%VS110COMNTOOLS%..\IDE\devenv.com" "build\cocos2d-win32.vc2012.sln" /Build "Debug|Win32"', shell=True)
|
ret = subprocess.call('"%VS110COMNTOOLS%..\IDE\devenv.com" "build\cocos2d-win32.vc2012.sln" /Build "Debug|Win32"', shell=True)
|
||||||
elif(node_name == 'ios_mac'):
|
elif(node_name == 'ios_mac'):
|
||||||
|
|
Loading…
Reference in New Issue