Joe McDonnell created IMPALA-11569:
--------------------------------------

             Summary: Run finalize.sh in bin/jenkins/all-tests.sh even if 
dataload fails
                 Key: IMPALA-11569
                 URL: https://issues.apache.org/jira/browse/IMPALA-11569
             Project: IMPALA
          Issue Type: Improvement
          Components: Infrastructure
    Affects Versions: Impala 4.2.0
            Reporter: Joe McDonnell
            Assignee: Joe McDonnell


bin/jenkins/all-tests.sh (used for precommit Jenkins jobs) has "set -oeu 
pipefail" set, so if a command fails, it will exit. Currently, it sources 
bin/bootstrap_development.sh, so if that fails it will not run finalize.sh.
{noformat}
source bin/bootstrap_development.sh
...
RET_CODE=0
if ! bin/run-all-tests.sh; then
  RET_CODE=1
fi
# Shutdown minicluster at the end
testdata/bin/kill-all.sh
bin/jenkins/finalize.sh
exit $RET_CODE{noformat}
finalize.sh is useful for resolving minidumps and generating JUnitXML. 
bootstrap_development.sh runs dataload, so Impala could crash and finalize.sh 
wouldn't run. We should change it so that finalize.sh runs even if dataload 
fails.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to