We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6377ada commit 8e6247fCopy full SHA for 8e6247f
dev/run-tests-jenkins
@@ -101,7 +101,13 @@ function post_message () {
101
function send_archived_logs () {
102
echo "Archiving unit tests logs..."
103
104
- local log_files=$(find . -name "unit-tests.log")
+ local log_files=$(
105
+ find .\
106
+ -name "unit-tests.log" -o\
107
+ -path "./sql/hive/target/HiveCompatibilitySuite.failed" -o\
108
+ -path "./sql/hive/target/HiveCompatibilitySuite.hiveFailed" -o\
109
+ -path "./sql/hive/target/HiveCompatibilitySuite.wrong"
110
+ )
111
112
if [ -z "$log_files" ]; then
113
echo "> No log files found." >&2
0 commit comments