Răsfoiți Sursa

Minor adjustment to save half of the upload bandwidth, at the cost of another layer of compression on both ends.

[SVN r39592]
Rene Rivera 18 ani în urmă
părinte
comite
bf96c2ae6f
1 a modificat fișierele cu 5 adăugiri și 3 ștergeri
  1. 5 3
      tools/regression/xsl_reports/build_results.sh

+ 5 - 3
tools/regression/xsl_reports/build_results.sh

@@ -41,10 +41,12 @@ upload_results()
 {
     cwd=`pwd`
     cd ${1}/all
-    rm -f ../../${1}.zip
-    zip -r9 ../../${1} *
+    rm -f ../../${1}.zip*
+    zip -r -9 ../../${1} * -x '*.xml'
     cd "${cwd}"
-    scp ${1}.zip beta.boost.org:/home/grafik/www.boost.org/testing/incoming/
+    bzip2 -9 ${1}.zip
+    scp ${1}.zip.bz2 beta.boost.org:/home/grafik/www.boost.org/testing/incoming/
+    ssh beta.boost.org bunzip2 /home/grafik/www.boost.org/testing/incoming/${1}.zip.bz2
 }
 
 build_all trunk

粤ICP备19079148号