You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The talks repo's .tar.gz export from git archive is over the 25 MB sanity check limit imposed by the builders. It's currently 31 MB compressed.
There's no reason to ship around all those images and PDFs.
Adding export-ignore attributes to the binary files brings the .tar.gz file fom 31 MB to 500 KB:
diff --git a/.gitattributes b/.gitattributes
index d2f212e..2273302 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -8,3 +8,13 @@
# See golang.org/issue/9281
* -text
+
+# The builders assume the git archive *.tar.gz of the tree is under
+# 25 MB but this repo is 31+ MB with all the images.
+# So exclude those.
+
+*.jpg export-ignore
+*.jpeg export-ignore
+*.png export-ignore
+*.gif export-ignore
+*.pdf export-ignore
The text was updated successfully, but these errors were encountered:
The talks repo's .tar.gz export from git archive is over the 25 MB sanity check limit imposed by the builders. It's currently 31 MB compressed.
There's no reason to ship around all those images and PDFs.
Adding export-ignore attributes to the binary files brings the .tar.gz file fom 31 MB to 500 KB:
The text was updated successfully, but these errors were encountered: