Skip to content

Commit

Permalink
fix android armv7
Browse files Browse the repository at this point in the history
  • Loading branch information
AGulev committed Dec 23, 2024
1 parent 6d84a59 commit 94bb423
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion bundle_report.csv
Original file line number Diff line number Diff line change
Expand Up @@ -186,4 +186,3 @@ VERSION,arm64-ios,arm64-android,armv7-android,x86_64-macos,js-web,wasm-web,x86_6
1.9.3,1377701,1832234,1815852,3849745,1435504,1048396,1976636,2428057,2858941,3491209
1.9.4,1396325,1852714,1840428,3903801,1442770,1047320,1998650,2453272,2888976,3525049
1.9.5,1395866,1856810,1840428,3908023,1444022,1048360,2000146,2454121,2890311,3525175
1.9.6,1402198,1856810,7013676,3904559,1449430,1052963,1996883,2209296,2638902,3525799
5 changes: 4 additions & 1 deletion check_size.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,11 @@ def get_size_from_url(sha1, path):
def get_engine_size_from_aws(sha1, platform, filename):
if platform == "x86-win32":
platform = "win32"
path = "engine/{}/{}"
if "android" in platform:
path = "engine/{}/stripped/{}"
print("Gettings size of {} for platform {} with sha1 {} from AWS".format(filename, platform, sha1))
path = "engine/{}/{}".format(platform, filename)
path = path.format(platform, filename)
size = get_size_from_url(sha1, path)
if size == 0:
path = "engine/{}/{}".format(platform, filename)
Expand Down
1 change: 0 additions & 1 deletion engine_report.csv
Original file line number Diff line number Diff line change
Expand Up @@ -186,4 +186,3 @@ VERSION,arm64-ios,arm64-android,armv7-android,x86_64-macos,js-web,wasm-web,x86_6
1.9.3,2852736,3764568,3406692,3833280,5039346,2374239,4173144,6093824,7476736,3474744
1.9.4,2886280,3814912,3455588,3887336,5020648,2399700,4219736,6159360,7556608,3508584
1.9.5,2886416,3816832,3457772,3891432,5023084,2400982,4219832,6160384,7559680,3508584
1.9.6,2886600,3819952,18071568,3887520,5036492,2408422,4236360,6171136,7565312,3508760

0 comments on commit 94bb423

Please sign in to comment.