This is an automated email from the ASF dual-hosted git repository.
chesnay pushed a commit to branch release-1.8
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.8 by this push:
new ccf2ded [hotfix][travis] Fix directory references
ccf2ded is described below
commit ccf2dedde62a3681537516a18cffa5ae2e05de42
Author: zentol <[email protected]>
AuthorDate: Thu Mar 21 15:06:32 2019 +0100
[hotfix][travis] Fix directory references
---
tools/travis/nightly.sh | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/tools/travis/nightly.sh b/tools/travis/nightly.sh
index 0aad37a..1b547ad 100755
--- a/tools/travis/nightly.sh
+++ b/tools/travis/nightly.sh
@@ -26,19 +26,16 @@ if [ -z "${HERE}" ] ; then
fi
ARTIFACTS_DIR="${HERE}/artifacts"
-FLINK_DIR="${HERE}/flink"
mkdir -p $ARTIFACTS_DIR || { echo "FAILURE: cannot create log directory
'${ARTIFACTS_DIR}'." ; exit 1; }
-LOG4J_PROPERTIES=${FLINK_DIR}/tools/log4j-travis.properties
+LOG4J_PROPERTIES=tools/log4j-travis.properties
MVN_LOGGING_OPTIONS="-Dlog.dir=${ARTIFACTS_DIR}
-Dlog4j.configuration=file://$LOG4J_PROPERTIES
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"
MVN_COMMON_OPTIONS="-nsu -B -Dflink.forkCount=2 -Dflink.forkCountTestPackage=2
-Dfast"
MVN_COMPILE_OPTIONS="-T1C -DskipTests"
-cp tools/travis/splits/* ${FLINK_DIR}/flink-end-to-end-tests
-
-cd "${FLINK_DIR}"
+cp tools/travis/splits/* flink-end-to-end-tests
COMMIT_HASH=$(git rev-parse HEAD)
echo "Testing branch ${BRANCH} from remote ${REMOTE}. Commit hash:
${COMMIT_HASH}"