commit 1fe922d192668c74c5ce15a668922cce2e06c403
parent c28e84770b20bc6cd86ddd3036dd2bc50744647d
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 23 Feb 2020 20:31:51 +0100
log failure cause better
Diffstat:
2 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/bin/taler-deployment-prepare b/bin/taler-deployment-prepare
@@ -60,6 +60,9 @@ taler-exchange-keyup -o auditor.in
taler-auditor-sign -m $EXCHANGE_MASTER_PUB -r auditor.in -o auditor.out
rm -f auditor.in auditor.out # we don't actually use the auditor's signatures in the demo!
+# Make configuration accessible to auditor
+chmod 750 $HOME/.config
+
##
## Step 3: Sign the exchange's wire information
##
diff --git a/buildbot/make_auditor_reports.sh b/buildbot/make_auditor_reports.sh
@@ -59,16 +59,18 @@ if ! python ${PWD}/render_auditor_reports.py \
"${REPORT_FILE_NOEXT}.txt" \
"${WIRE_REPORT_FILE_NOEXT}.txt" \
> "${REPORT_FILE_NOEXT}.tex" \
- < "${JINJA_TEMPLATE}"; then
-
- clean_files
+ < "${JINJA_TEMPLATE}";
+then
+ echo "Rendering failed"
+# clean_files
exit 1
fi
cd ${HOME}
echo "TeXing report"
if ! pdflatex "${REPORT_FILE_NOEXT}.tex" && pdflatex "${REPORT_FILE_NOEXT}.tex"; then
- clean_files
+ echo "pdflatex failed"
+# clean_files
exit 1
fi