~ salmonella-environment-setup (master) 8f89feeb61b78bf739acb1812bc270c05043a04d


commit 8f89feeb61b78bf739acb1812bc270c05043a04d
Author:     Mario Domenech Goulart <mario@parenteses.org>
AuthorDate: Sun May 27 14:25:20 2018 +0200
Commit:     Mario Domenech Goulart <mario@parenteses.org>
CommitDate: Sun May 27 14:25:20 2018 +0200

    conf: add example code on how to quickly test the workflow with run-salmonella.sh

diff --git a/conf/common/chicken-4.scm b/conf/common/chicken-4.scm
index ca38a4b..f919a76 100644
--- a/conf/common/chicken-4.scm
+++ b/conf/common/chicken-4.scm
@@ -7,3 +7,10 @@
 (skip-eggs
  (append '(async-io pledge spatial-trees)
          (skip-eggs)))
+
+
+;;; Uncomment the lines below to quickly test the workflow (skip
+;;; building CHICKEN and only test one egg)
+;;
+;; (list-eggs (lambda () '(ansi-escape-sequences)))
+;; (pre-built-chicken "/path/to/prebuilt/chicken-4")
diff --git a/conf/common/chicken-5.scm b/conf/common/chicken-5.scm
index e1078c0..789028f 100644
--- a/conf/common/chicken-5.scm
+++ b/conf/common/chicken-5.scm
@@ -43,3 +43,10 @@
        (pp `(location ,chicken-5-eggs-directory)))
      append:)
    (system* "rm -rf $HOME/.chicken-install.cache")))
+
+
+;;; Uncomment the lines below to quickly test the workflow (skip
+;;; building CHICKEN and only test one egg)
+;;
+;; (list-eggs (lambda () '(ansi-escape-sequences)))
+;; (pre-built-chicken "/path/to/prebuilt/chicken-5")
Trap