We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2af98f commit 91e781fCopy full SHA for 91e781f
scripts/html_to_png.sh
@@ -44,10 +44,12 @@ else
44
fi
45
46
echo "Converting JaCoCo report: $JACOCO_HTML -> reports/jacoco.png"
47
-wkhtmltoimage --width 1600 --quality 90 "$JACOCO_HTML" "${PNG_OUTPUT}/jacoco.png"
+wkhtmltoimage --enable-local-file-access --width 1600 --quality 90 \
48
+ "$JACOCO_HTML" "${PNG_OUTPUT}/jacoco.png"
49
50
echo "Converting PMD report: $PMD_HTML -> reports/pmd.png"
-wkhtmltoimage --width 1600 --quality 90 "$PMD_HTML" "${PNG_OUTPUT}/pmd.png"
51
52
+ "$PMD_HTML" "${PNG_OUTPUT}/pmd.png"
53
54
# Copy HTML assets for artifact collection
55
echo "Copying HTML assets into ${HTML_OUTPUT}"
0 commit comments