From: Sam Hague Date: Thu, 18 Oct 2018 15:38:14 +0000 (-0400) Subject: ignore odltools errors and continue X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=dd05884e379309afa22241139825a368ea25c9ac;p=releng%2Fbuilder.git ignore odltools errors and continue Change-Id: Ia7b72a591c21d0fbaebb4608f1d5d5647044a79d Signed-off-by: Sam Hague --- diff --git a/jjb/netvirt/run-reports.sh b/jjb/netvirt/run-reports.sh index 2d5c99a74..7b05ff1f1 100644 --- a/jjb/netvirt/run-reports.sh +++ b/jjb/netvirt/run-reports.sh @@ -17,8 +17,8 @@ virtualenv --quiet "/tmp/v/odltools" source /tmp/v/odltools/bin/activate pip install odltools mkdir $REPORT_PATH -python -m odltools csit reports --numjobs $NUM_JOBS --path $REPORT_PATH --url $LOG_URL --jobnames $JOB_NAMES -python -m odltools csit exceptions --numjobs $NUM_JOBS --path $REPORT_PATH --url $LOG_URL --jobnames $JOB_NAMES +python -m odltools csit reports --numjobs $NUM_JOBS --path $REPORT_PATH --url $LOG_URL --jobnames $JOB_NAMES || true +python -m odltools csit exceptions --numjobs $NUM_JOBS --path $REPORT_PATH --url $LOG_URL --jobnames $JOB_NAMES || true mkdir -p $WORKSPACE/archives -cp $REPORT_PATH/*.txt $WORKSPACE/archives +cp $REPORT_PATH/*.txt $WORKSPACE/archives || true exit 0