ciel/build-image.lisp
vindarel b23214917c init file: add --no-userinit
and add --noinform that was missing in Clingon options.

Move the useful load-without-shebang in utils.lisp, now available for
all systems.

"make" alone calls make build
2023-05-04 16:53:40 +02:00

21 lines
622 B
Common Lisp

(in-package :cl-user)
(ql:quickload "cl+ssl") ;; only because of Deploy's parameters.
;; (asdf:load-asd "./ciel.asd")
;; Bug on CI, needs an absolute pathname.
(let ((pathname (merge-pathnames "ciel.asd" (uiop:getcwd))))
(uiop:format! t "~&--- loading this asd absolute pathname: ~S~&" pathname)
(asdf:load-asd pathname))
(ql:quickload "swank")
(ql:quickload "ciel")
(in-package :ciel-user)
;; XXX: we would like to read our ~/.cielrc init file when resuming the core
;; in Slime.
;; Currently we load it only when starting the terminal REPL.
;; See the :toplevel option.
(sb-ext:save-lisp-and-die "ciel-core")