Created
November 14, 2016 23:19
-
-
Save benley/2225fa59be62a2f3a17626d2150cfe74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# 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 | |
# | |
# KEY1 VALUE1 | |
# KEY2 VALUE2 | |
# | |
# 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 describe --always --dirty) | |
if [[ $? != 0 ]]; | |
then | |
exit 1 | |
fi | |
echo "BUILD_SCM_REVISION ${git_rev}" | |
# Check whether there are any uncommited changes | |
git diff-index --quiet HEAD -- | |
if [[ $? == 0 ]]; | |
then | |
tree_status="Clean" | |
else | |
tree_status="Modified" | |
fi | |
echo "BUILD_SCM_STATUS ${tree_status}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment