| # This script will be run bazel when building process starts to |
| # generate key-value information that represents the status of the |
| # workspace. The output should be like |
| # If the script exits with non-zero code, it's considered as a failure |
| # and the output will be discarded. |
| # The code below presents an implementation that works for git repository |
| git_rev=$(git rev-parse HEAD) |
| echo "BUILD_SCM_REVISION ${git_rev}" |
| # Check whether there are any uncommited changes |
| git diff-index --quiet HEAD -- |
| echo "BUILD_SCM_STATUS ${tree_status}" |