~ salmonella-environment-setup (master) 8b3d4cb7285f93bab3678127038c3b9eeb77f437
commit 8b3d4cb7285f93bab3678127038c3b9eeb77f437
Author: Mario Domenech Goulart <mario@parenteses.org>
AuthorDate: Sun May 27 10:40:32 2018 +0200
Commit: Mario Domenech Goulart <mario@parenteses.org>
CommitDate: Sun May 27 10:40:32 2018 +0200
conf: remove hardcoded keep-repo hack from chicken-4-debugbuild
Add chicken-4-debugbuild-no-cache -- it properly sets keep-repo.
diff --git a/conf/chicken-4-debugbuild-no-cache.conf b/conf/chicken-4-debugbuild-no-cache.conf
new file mode 100644
index 0000000..839876e
--- /dev/null
+++ b/conf/chicken-4-debugbuild-no-cache.conf
@@ -0,0 +1,8 @@
+(load-relative "./common.scm")
+(load-relative "./chicken-4-common.scm")
+
+(keep-repo? #f)
+
+(branch-publish-transformer
+ (lambda (branch)
+ (string-append branch "-debugbuild")))
diff --git a/conf/chicken-4-debugbuild.conf b/conf/chicken-4-debugbuild.conf
index f21e70b..36e85ad 100644
--- a/conf/chicken-4-debugbuild.conf
+++ b/conf/chicken-4-debugbuild.conf
@@ -1,11 +1,6 @@
(load-relative "./common.scm")
(load-relative "./chicken-4-common.scm")
-;; The salmonella-linux-x86-64 machine builds eggs without cache
-(when (and (eq? (machine-type) 'x86-64)
- (eq? (software-type) 'unix))
- (keep-repo? #f))
-
(branch-publish-transformer
(lambda (branch)
(string-append branch "-debugbuild")))
Trap