~ salmonella-environment-setup (master) 155c84bcf1bdb91e49baeb0828ab044e010cde7e


commit 155c84bcf1bdb91e49baeb0828ab044e010cde7e
Author:     Mario Domenech Goulart <mario.goulart@gmail.com>
AuthorDate: Thu Jun 19 16:28:41 2014 +0200
Commit:     Mario Domenech Goulart <mario.goulart@gmail.com>
CommitDate: Thu Jun 19 16:28:41 2014 +0200

    salmonella-linux-x86-64: use a common configuration file
    
    While at it, but the stability version to 4.9.0.

diff --git a/salmonella-linux-x86-64/common.scm b/salmonella-linux-x86-64/common.scm
new file mode 100644
index 0000000..eff37f6
--- /dev/null
+++ b/salmonella-linux-x86-64/common.scm
@@ -0,0 +1,13 @@
+(use salmonella-run-publish-params posix files)
+
+(keep-repo? #t)
+
+(compress-report? #f)
+(create-report-tarball 'gzip)
+
+(web-dir
+ (make-pathname (list (get-environment-variable "HOME")
+                      "salmonella")
+                "reports"))
+
+(feeds-server "salmonella-linux-x86-64.call-cc.org")
diff --git a/salmonella-linux-x86-64/master-clang.conf b/salmonella-linux-x86-64/master-clang.conf
index 3bae621..34a8ead 100644
--- a/salmonella-linux-x86-64/master-clang.conf
+++ b/salmonella-linux-x86-64/master-clang.conf
@@ -1,14 +1,3 @@
-(use salmonella-run-publish-params posix files)
+(load-relative "./common.scm")
 
-(compress-report? #f)
-(create-report-tarball 'gzip)
-
-(keep-repo? #t)
 (c-compiler "clang")
-
-(web-dir
- (make-pathname (list (get-environment-variable "HOME")
-                      "salmonella")
-                "reports"))
-
-(feeds-server "salmonella-linux-x86-64.call-cc.org")
diff --git a/salmonella-linux-x86-64/master-debugbuild.conf b/salmonella-linux-x86-64/master-debugbuild.conf
index 8a17841..ed86a98 100644
--- a/salmonella-linux-x86-64/master-debugbuild.conf
+++ b/salmonella-linux-x86-64/master-debugbuild.conf
@@ -1,15 +1,7 @@
-(use salmonella-run-publish-params posix files)
+(load-relative "./common.scm")
 
-(compress-report? #f)
-(create-report-tarball 'gzip)
+(keep-repo? #f)
 
 (branch-publish-transformer
   (lambda (branch)
     (string-append branch "-debugbuild")))
-
-(web-dir
- (make-pathname (list (get-environment-variable "HOME")
-                      "salmonella")
-                "reports"))
-
-(feeds-server "salmonella-linux-x86-64.call-cc.org")
diff --git a/salmonella-linux-x86-64/master.conf b/salmonella-linux-x86-64/master.conf
index 3602c3a..e2a1460 100644
--- a/salmonella-linux-x86-64/master.conf
+++ b/salmonella-linux-x86-64/master.conf
@@ -1,13 +1 @@
-(use salmonella-run-publish-params posix files)
-
-(compress-report? #f)
-(create-report-tarball 'gzip)
-
-(keep-repo? #t)
-
-(web-dir
- (make-pathname (list (get-environment-variable "HOME")
-                      "salmonella")
-                "reports"))
-
-(feeds-server "salmonella-linux-x86-64.call-cc.org")
+(load-relative "./common.scm")
diff --git a/salmonella-linux-x86-64/prerelease.conf b/salmonella-linux-x86-64/prerelease.conf
index 3e8ec95..ca213a4 100644
--- a/salmonella-linux-x86-64/prerelease.conf
+++ b/salmonella-linux-x86-64/prerelease.conf
@@ -1,15 +1,3 @@
-(use salmonella-run-publish-params posix files)
+(load-relative "./common.scm")
 
-(compress-report? #f)
-(create-report-tarball 'gzip)
-
-(keep-repo? #t)
 (chicken-core-branch "prerelease")
-(skip-eggs (cons 'scsh-process (skip-eggs)))
-
-(web-dir
- (make-pathname (list (get-environment-variable "HOME")
-                      "salmonella")
-                "reports"))
-
-(feeds-server "salmonella-linux-x86-64.call-cc.org")
diff --git a/salmonella-linux-x86-64/stability.conf b/salmonella-linux-x86-64/stability.conf
index 75da68f..015d95c 100644
--- a/salmonella-linux-x86-64/stability.conf
+++ b/salmonella-linux-x86-64/stability.conf
@@ -1,19 +1,8 @@
 ;; -*- scheme -*-
-(use salmonella-run-publish-params posix files)
+(load-relative "./common.scm")
 
-(compress-report? #f)
-(create-report-tarball 'gzip)
-
-(keep-repo? #t)
-(chicken-core-branch "stability/4.8.0")
+(chicken-core-branch "stability/4.9.0")
 
 (branch-publish-transformer
   (lambda (branch)
-    "stability-4.8.0.x"))
-
-(web-dir
- (make-pathname (list (get-environment-variable "HOME")
-                      "salmonella")
-                "reports"))
-
-(feeds-server "salmonella-linux-x86-64.call-cc.org")
+    "stability-4.9.0.x"))
Trap