~ salmonella-environment-setup (master) c544ff82836ce542fa3b553718d4a45d003f5166


commit c544ff82836ce542fa3b553718d4a45d003f5166
Author:     Mario Domenech Goulart <mario@ossystems.com.br>
AuthorDate: Wed Apr 9 11:03:27 2014 -0300
Commit:     Mario Domenech Goulart <mario@ossystems.com.br>
CommitDate: Wed Apr 9 11:03:27 2014 -0300

    salmonella (linux x86): update config files to create report tarballs
    
    Note that `compress-report?' actually means compressing each report
    file individually, which is not what we want (that doesn't help fixing
    the inode exhaustion problem) -- that's why it's set to #f.
    
    We want (create-report-tarball 'gzip), which means create a tar file
    and compress it with gzip.

diff --git a/salmonella-linux-x86/master-clang.conf b/salmonella-linux-x86/master-clang.conf
index dc679d2..89c0d86 100644
--- a/salmonella-linux-x86/master-clang.conf
+++ b/salmonella-linux-x86/master-clang.conf
@@ -1,5 +1,8 @@
 (use salmonella-run-publish-params posix files)
 
+(compress-report? #f)
+(create-report-tarball 'gzip)
+
 (keep-repo? #t)
 (c-compiler "clang")
 
diff --git a/salmonella-linux-x86/master-debugbuild.conf b/salmonella-linux-x86/master-debugbuild.conf
index a041e1a..a4d64f0 100644
--- a/salmonella-linux-x86/master-debugbuild.conf
+++ b/salmonella-linux-x86/master-debugbuild.conf
@@ -1,5 +1,8 @@
 (use salmonella-run-publish-params posix files)
 
+(compress-report? #f)
+(create-report-tarball 'gzip)
+
 (keep-repo? #t)
 
 (branch-publish-transformer
diff --git a/salmonella-linux-x86/master.conf b/salmonella-linux-x86/master.conf
index e479ef1..3b1b6aa 100644
--- a/salmonella-linux-x86/master.conf
+++ b/salmonella-linux-x86/master.conf
@@ -1,5 +1,8 @@
 (use salmonella-run-publish-params posix files)
 
+(compress-report? #f)
+(create-report-tarball 'gzip)
+
 (keep-repo? #t)
 
 (web-dir
diff --git a/salmonella-linux-x86/prerelease.conf b/salmonella-linux-x86/prerelease.conf
index 07b3d11..e9eccb2 100644
--- a/salmonella-linux-x86/prerelease.conf
+++ b/salmonella-linux-x86/prerelease.conf
@@ -1,5 +1,8 @@
 (use salmonella-run-publish-params posix files)
 
+(compress-report? #f)
+(create-report-tarball 'gzip)
+
 (keep-repo? #t)
 (chicken-core-branch "prerelease")
 (skip-eggs (cons 'scsh-process (skip-eggs)))
diff --git a/salmonella-linux-x86/stability.conf b/salmonella-linux-x86/stability.conf
index 2e95adf..81726a0 100644
--- a/salmonella-linux-x86/stability.conf
+++ b/salmonella-linux-x86/stability.conf
@@ -1,6 +1,9 @@
 ;; -*- scheme -*-
 (use salmonella-run-publish-params posix files)
 
+(compress-report? #f)
+(create-report-tarball 'gzip)
+
 (keep-repo? #t)
 (chicken-core-branch "stability/4.8.0")
 
Trap