~ salmonella-environment-setup (master) 1f7c08047bfa7b400344e5be34f63854290f5b66


commit 1f7c08047bfa7b400344e5be34f63854290f5b66
Author:     Mario Domenech Goulart <mario@ossystems.com.br>
AuthorDate: Wed Apr 9 10:58:44 2014 -0300
Commit:     Mario Domenech Goulart <mario@ossystems.com.br>
CommitDate: Wed Apr 9 10:58:44 2014 -0300

    salmonella (linux x86-64): 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-64/master-clang.conf b/salmonella-linux-x86-64/master-clang.conf
index c1da609..3bae621 100644
--- a/salmonella-linux-x86-64/master-clang.conf
+++ b/salmonella-linux-x86-64/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-64/master-debugbuild.conf b/salmonella-linux-x86-64/master-debugbuild.conf
index 8444f2c..8a17841 100644
--- a/salmonella-linux-x86-64/master-debugbuild.conf
+++ b/salmonella-linux-x86-64/master-debugbuild.conf
@@ -1,5 +1,8 @@
 (use salmonella-run-publish-params posix files)
 
+(compress-report? #f)
+(create-report-tarball 'gzip)
+
 (branch-publish-transformer
   (lambda (branch)
     (string-append branch "-debugbuild")))
diff --git a/salmonella-linux-x86-64/master.conf b/salmonella-linux-x86-64/master.conf
index 6fa3502..3602c3a 100644
--- a/salmonella-linux-x86-64/master.conf
+++ b/salmonella-linux-x86-64/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-64/prerelease.conf b/salmonella-linux-x86-64/prerelease.conf
index d9c4a71..3e8ec95 100644
--- a/salmonella-linux-x86-64/prerelease.conf
+++ b/salmonella-linux-x86-64/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-64/stability.conf b/salmonella-linux-x86-64/stability.conf
index 60afaf7..75da68f 100644
--- a/salmonella-linux-x86-64/stability.conf
+++ b/salmonella-linux-x86-64/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