[go: nahoru, domu]

blob: 09444a5e35dd1c7ed1103855b495a76f43288d69 [file] [log] [blame]
Jim Sprochfd8be072020-10-20 16:46:08 -07001#!/bin/bash
2set -e
3
4echo "Starting $0 at $(date)"
5
6cd "$(dirname $0)"
7
8# Run Gradle
Jeff Gaston5ab1a172021-01-15 12:45:08 -05009impl/build.sh listTaskOutputs -Pandroidx.validateNoUnrecognizedMessages "$@"
Jeff Gaston27fcfa02021-01-15 15:32:37 -050010impl/build.sh allProperties -Pandroidx.validateNoUnrecognizedMessages=false "$@" >/dev/null
11impl/build.sh buildOnServer checkExternalLicenses \
Jim Sprochfd8be072020-10-20 16:46:08 -070012 -Pandroidx.compose.multiplatformEnabled=true \
Jeff Gaston085a5862021-01-06 17:18:28 -050013 --profile "$@"
Jim Sprochfd8be072020-10-20 16:46:08 -070014
15# Parse performance profile reports (generated with the --profile option above) and re-export the metrics in an easily machine-readable format for tracking
16impl/parse_profile_htmls.sh
17
18echo "Completing $0 at $(date)"