This is an automated email from the ASF dual-hosted git repository.
chesnay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 537e088 [hotfix][travis] Log commit ID ad cache directory
537e088 is described below
commit 537e088590209e5955542841964ad005e6d7415d
Author: zentol <[email protected]>
AuthorDate: Thu Feb 28 18:19:05 2019 +0100
[hotfix][travis] Log commit ID ad cache directory
---
tools/travis_controller.sh | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tools/travis_controller.sh b/tools/travis_controller.sh
index 4868057..c470a3e 100755
--- a/tools/travis_controller.sh
+++ b/tools/travis_controller.sh
@@ -23,10 +23,14 @@ echo $MAVEN_OPTS
mvn -version
+echo "Commit: $(git rev-parse HEAD)"
+
CACHE_DIR="$HOME/flink_cache"
CACHE_BUILD_DIR="$CACHE_DIR/$TRAVIS_BUILD_NUMBER"
CACHE_FLINK_DIR="$CACHE_BUILD_DIR/flink"
+echo "Flink cache location: ${CACHE_FLINK_DIR}"
+
HERE="`dirname \"$0\"`" # relative
HERE="`( cd \"$HERE\" && pwd )`" # absolutized and normalized
if [ -z "$HERE" ] ; then