Skip to content
Snippets Groups Projects
Commit 147b6be3 authored by Yin Huai's avatar Yin Huai Committed by Josh Rosen
Browse files

[BUILD] Always run SQL tests in master build.

Seems our master build does not run HiveCompatibilitySuite (because _RUN_SQL_TESTS is not set). This PR introduces a property `AMP_JENKINS_PRB` to differentiate a PR build and a regular build. If a build is a regular one, we always set _RUN_SQL_TESTS to true.

cc JoshRosen nchammas

Author: Yin Huai <yhuai@databricks.com>

Closes #5955 from yhuai/runSQLTests and squashes the following commits:

3d399bc [Yin Huai] Always run SQL tests in master build.
parent 5a3c04bb
No related branches found
No related tags found
No related merge requests found
...@@ -82,24 +82,31 @@ export SBT_MAVEN_PROFILES_ARGS="$SBT_MAVEN_PROFILES_ARGS -Pkinesis-asl" ...@@ -82,24 +82,31 @@ export SBT_MAVEN_PROFILES_ARGS="$SBT_MAVEN_PROFILES_ARGS -Pkinesis-asl"
if [ -n "$AMPLAB_JENKINS" ]; then if [ -n "$AMPLAB_JENKINS" ]; then
git fetch origin master:master git fetch origin master:master
sql_diffs=$( # AMP_JENKINS_PRB indicates if the current build is a pull request build.
git diff --name-only master \ if [ -n "$AMP_JENKINS_PRB" ]; then
| grep -e "^sql/" -e "^bin/spark-sql" -e "^sbin/start-thriftserver.sh" # It is a pull request build.
) sql_diffs=$(
git diff --name-only master \
non_sql_diffs=$( | grep -e "^sql/" -e "^bin/spark-sql" -e "^sbin/start-thriftserver.sh"
git diff --name-only master \ )
| grep -v -e "^sql/" -e "^bin/spark-sql" -e "^sbin/start-thriftserver.sh"
) non_sql_diffs=$(
git diff --name-only master \
if [ -n "$sql_diffs" ]; then | grep -v -e "^sql/" -e "^bin/spark-sql" -e "^sbin/start-thriftserver.sh"
echo "[info] Detected changes in SQL. Will run Hive test suite." )
_RUN_SQL_TESTS=true
if [ -n "$sql_diffs" ]; then
if [ -z "$non_sql_diffs" ]; then echo "[info] Detected changes in SQL. Will run Hive test suite."
echo "[info] Detected no changes except in SQL. Will only run SQL tests." _RUN_SQL_TESTS=true
_SQL_TESTS_ONLY=true
if [ -z "$non_sql_diffs" ]; then
echo "[info] Detected no changes except in SQL. Will only run SQL tests."
_SQL_TESTS_ONLY=true
fi
fi fi
else
# It is a regular build. We should run SQL tests.
_RUN_SQL_TESTS=true
fi fi
fi fi
......
...@@ -185,6 +185,8 @@ done ...@@ -185,6 +185,8 @@ done
# run tests # run tests
{ {
# Marks this build is a pull request build.
export AMP_JENKINS_PRB=true
timeout "${TESTS_TIMEOUT}" ./dev/run-tests timeout "${TESTS_TIMEOUT}" ./dev/run-tests
test_result="$?" test_result="$?"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment