Soong UI generates a proto file named build_progress.pb in $(OUT_DIR) output directory that contains build action numbers (how many are executing, finished and total) during the course of a build. This is for external systems that invokes the Platform Build Systems and would like to know the completion status. Bug: b/150401146 Test: Wrote a bash script that continuously read the build_progress.pb file and computed the build completed percentage while building the aosp_arm-eng target. Compared the percentage between the Soong output console and the one reported by the bash script. Change-Id: I7c7347bc8e41958093892d8e2731c4f4169937dd
18 lines
430 B
Bash
Executable File
18 lines
430 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Generates the golang source file of build_completion.proto file.
|
|
|
|
set -e
|
|
|
|
function die() { echo "ERROR: $1" >&2; exit 1; }
|
|
|
|
readonly error_msg="Maybe you need to run 'lunch aosp_arm-eng && m aprotoc blueprint_tools'?"
|
|
|
|
if ! hash aprotoc &>/dev/null; then
|
|
die "could not find aprotoc. ${error_msg}"
|
|
fi
|
|
|
|
if ! aprotoc --go_out=paths=source_relative:. build_progress.proto; then
|
|
die "build failed. ${error_msg}"
|
|
fi
|