We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b01e997 commit 921974dCopy full SHA for 921974d
src/main/scripts/ci/check-build-and-verify.sh
@@ -233,10 +233,10 @@ if [ "$DANGER_STATUS" != 'skip' ]; then
233
fi
234
235
# In order to be able debug robot framework test flakes we need to have a report.
236
-# Just encode it to a binary form and dump to console.
+# Just encode it to a gzipped binary form and dump to console.
237
if fgrep -qs 'status="FAIL"' target/robotframework-reports/output.xml; then
238
echo "===== REPORT START ====="
239
- base64 target/robotframework-reports/log.html
+ cat target/robotframework-reports/log.html | gzip -c | base64
240
echo "===== REPORT END ====="
241
242
0 commit comments