Improve diagnostics for build hashes

This commit is contained in:
Yan-Fa Li 2018-12-25 16:40:53 -08:00 committed by Drashna Jaelre
parent 8e0444618f
commit ee1be3e5b5
2 changed files with 6 additions and 4 deletions

View File

@ -19,6 +19,7 @@ install:
before_script:
- avr-gcc --version
script:
- git rev-parse --short HEAD
- make test:all AUTOGEN=false
- bash util/travis_build.sh
- bash util/travis_docs.sh

View File

@ -8,6 +8,7 @@ TRAVIS_COMMIT_RANGE="${TRAVIS_COMMIT_RANGE:-HEAD~1..HEAD}"
set -o errexit -o nounset
rev=$(git rev-parse --short HEAD)
echo "Using git hash ${rev}"
if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]] ; then