~ salmonella-environment-setup (master) /conf/common/chicken-4.scm
Trap1(import scheme)
2(cond-expand
3 (chicken-4
4 (import chicken)
5 (use salmonella-run-publish-params))
6 (chicken-5
7 (import (chicken load)
8 (chicken process-context))
9 (import salmonella-run-publish-params))
10 (else
11 (error "Unsupported CHICKEN version.")))
12
13(load-relative "./common.scm")
14
15(chicken-core-branch "chicken-4")
16
17(chicken-bootstrap-prefix (ensure-environment-variable "CHICKEN_4_PREFIX"))
18
19(skip-eggs
20 (append '(async-io
21 pledge
22 spatial-trees)
23 (skip-eggs)))
24
25
26;;; Uncomment the lines below to quickly test the workflow (skip
27;;; building CHICKEN and only test one egg)
28;;
29;; (list-eggs (lambda () '(ansi-escape-sequences)))
30;; (pre-built-chicken "/path/to/prebuilt/chicken-4")