~ salmonella-environment-setup (master) /conf/common/chicken-5.scm
Trap1(import scheme)2(cond-expand3 (chicken-44 (import chicken files))5 (chicken-56 (import (chicken load)7 (chicken pathname)8 (chicken platform)9 (chicken process-context)))10 (else11 (error "Unsupported CHICKEN version.")))1213(load-relative "./common.scm")1415(chicken-core-branch "chicken-5")1617(chicken-release 5)1819(chicken-bootstrap-prefix (ensure-environment-variable "CHICKEN_5_PREFIX"))2021(salmonella-path22 (make-pathname (list (chicken-bootstrap-prefix) "bin")23 "salmonella"))2425(skip-eggs26 (append27 (case (software-version)28 ((openbsd) '(inotify))29 ((freebsd) '(inotify pledge unveil))30 ((linux) '(pledge unveil)))31 (skip-eggs)))3233;;; Uncomment the lines below to quickly test the workflow (skip34;;; building CHICKEN and only test one egg)35;;36;; (list-eggs (lambda () '(ansi-escape-sequences)))37;; (pre-built-chicken "/path/to/prebuilt/chicken-5")