commit f44295461750b31123b1aab191b26095199b8509
parent b01aa55143142aab41e686c1aad30323e9662d01
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 1 Dec 2019 20:37:48 +0100
show progress in log
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/buildbot/make_auditor_reports.sh b/buildbot/make_auditor_reports.sh
@@ -32,23 +32,27 @@ if test -a ${REPORTS_DIRECTORY}/$(basename "${REPORT_FILE_NOEXT}.pdf"); then
exit 0
fi
+echo "Adding exchange to auditor's list"
taler-auditor-exchange \
-c ${HOME}/.config/taler.conf \
-m $(taler-config -s exchange -o master_public_key) \
-u $(taler-config -s exchange -o base_url) || true
# Generate first report.
+echo "Running taler-auditor"
if ! taler-auditor > "${REPORT_FILE_NOEXT}.txt"; then
clean_files
exit 1
fi
# Generate "wire" report.
+echo "Running taler-wire-auditor"
if ! taler-wire-auditor > "${WIRE_REPORT_FILE_NOEXT}.txt"; then
clean_files
exit 1
fi
+echo "Rendering report"
if ! python ${PWD}/render_auditor_reports.py \
"${REPORT_FILE_NOEXT}.txt" \
"${WIRE_REPORT_FILE_NOEXT}.txt" \
@@ -60,7 +64,7 @@ if ! python ${PWD}/render_auditor_reports.py \
fi
cd ${HOME}
-
+echo "TeXing report"
if ! pdflatex "${REPORT_FILE_NOEXT}.tex" && pdflatex "${REPORT_FILE_NOEXT}.tex"; then
clean_files
exit 1