Skip to content

Commit

Permalink
fix malformed binary size json and swap sdk and platforms fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Guardiola31337 committed Nov 28, 2018
1 parent fc01fc5 commit 196c7c4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,4 @@ jobs:
- run:
name: Check & Publish Binary Size
command: |
./scripts/check_binary_size.sh ./scripts/paths_file.txt ./scripts/labels_file.txt 'mapbox-navigation-android' 'android' ./scripts/platforms_file.txt
./scripts/check_binary_size.sh ./scripts/paths_file.txt ./scripts/labels_file.txt 'mapbox-navigation-android' 'android' ./scripts/sdks_file.txt
20 changes: 10 additions & 10 deletions scripts/check_binary_size.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ paths_file=$1
labels_file=$2
# Argument 3 is the repo name
repo_name=$3
# Argument 4 is the SDK
sdk=$4
# Argument 5 is a file including the platforms (one per line) - Must match paths_file number of lines / size
platforms_file=$5
# Argument 4 is the platform
platform=$4
# Argument 5 is a file including the different SDKs / modules (one per line) - Must match paths_file number of lines / size
sdks_file=$5

source=mobile.binarysize
scripts_path="scripts"
json_name="$scripts_path/${sdk}-binarysize.json"
json_gz="$scripts_path/${sdk}-binarysize.json.gz"
json_name="$scripts_path/${platform}-binarysize.json"
json_gz="$scripts_path/${platform}-binarysize.json.gz"

date=`date '+%Y-%m-%d'`
utc_iso_date=`date -u +'%Y-%m-%dT%H:%M:%SZ'`
Expand All @@ -36,17 +36,17 @@ do
i=$(($i + 1))
done <"$paths_file"

while read platform
while read sdk
do
platforms+=("$platform")
done <"$platforms_file"
sdks+=("$sdk")
done <"$sdks_file"

# Write binary size to json file
i=0
while read path
do
file_size=$(wc -c <"$path" | sed -e 's/^[[:space:]]*//')
echo "{"sdk": ${sdk}, "platform": ${platforms[${i}]}, "size": ${file_size}, "created_at": "${utc_iso_date}"}" >> "$json_name"
echo "{\"platform\": \"${platform}\", \"sdk\": \"${sdks[${i}]}\", \"size\": ${file_size}, \"created_at\": \"${utc_iso_date}\"}" >> "$json_name"
i=$(($i + 1))
done <"$paths_file"

Expand Down
File renamed without changes.

0 comments on commit 196c7c4

Please sign in to comment.