File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ jobs:
147147 - run :
148148 name : Check & Publish Binary Size
149149 command : |
150- ./scripts/check_binary_size.sh ./scripts/paths_file.txt ./scripts/labels_file.txt 'mapbox-navigation-android' 'android' ./scripts/sdks_file.txt
150+ ./scripts/check_binary_size.sh ./scripts/paths_file.txt ./scripts/labels_file.txt 'mapbox-navigation-android' 'android' ./scripts/sdks_file.txt "${CIRCLE_SHA1}"
151151# ------------------------------------------------------------------------------
152152 publish :
153153 docker :
Original file line number Diff line number Diff line change @@ -13,11 +13,13 @@ repo_name=$3
1313platform=$4
1414# Argument 5 is a file including the different SDKs / modules (one per line) - Must match paths_file number of lines / size
1515sdks_file=$5
16+ # Argument 6 is the commit SHA
17+ commit_sha=$6
1618
1719source=mobile.binarysize
1820scripts_path=" scripts"
19- json_name=" $scripts_path /${repo_name} .json"
20- json_gz=" $scripts_path /${repo_name} .json.gz"
21+ json_name=" $scripts_path /${repo_name} - ${commit_sha} .json"
22+ json_gz=" $scripts_path /${repo_name} - ${commit_sha} .json.gz"
2123
2224date=` date ' +%Y-%m-%d' `
2325utc_iso_date=` date -u +' %Y-%m-%dT%H:%M:%SZ' `
You can’t perform that action at this time.
0 commit comments