~ salmonella-environment-setup (master) 92c0e0a1161d89885197b1f7dbc93c3f4379f13b


commit 92c0e0a1161d89885197b1f7dbc93c3f4379f13b
Author:     Mario Domenech Goulart <mario@parenteses.org>
AuthorDate: Sat Jun 17 00:30:56 2023 +0200
Commit:     Mario Domenech Goulart <mario@parenteses.org>
CommitDate: Sat Jun 17 00:30:59 2023 +0200

    Add conf/test.conf
    
    This is a configuration file to quickly test the workflow of
    run-salmonella.sh.  It assumes the PRE_BUILD_CHICKEN environment
    variable is set the the installation prefix of a working CHICKEN 5, to
    skip compiling/testing chicken.  The test configuration uses the pre
    built chicken to build the `this' egg.

diff --git a/conf/test.conf b/conf/test.conf
new file mode 100644
index 0000000..32a6910
--- /dev/null
+++ b/conf/test.conf
@@ -0,0 +1,12 @@
+;; -*- scheme -*-
+(cond-expand
+ (chicken-5
+  (import (chicken load)))
+ (else))
+
+(load-relative "./common/chicken-5.scm")
+
+(pre-built-chicken
+ (ensure-environment-variable "PRE_BUILT_CHICKEN"))
+
+(list-eggs (lambda () '(this)))
Trap