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