Skip to content

Commit

Permalink
Inhibit asdf and quicklisp on DEPLOY build
Browse files Browse the repository at this point in the history
  • Loading branch information
azimut committed Jul 24, 2023
1 parent 338e11a commit 34189a0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions bin/deploy.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,13 @@
(alut:exit)
(cepl:quit))

(deploy:define-hook (:deploy asdf) (directory)
(declare (ignorable directory))
#+asdf (mapc #'asdf:register-immutable-system (asdf:already-loaded-systems))
#+asdf (setf asdf:*central-registry* NIL)
#+quicklisp (setf ql:*local-project-directories* ())
#+asdf (asdf:clear-source-registry)
#+asdf (defun asdf:upgrade-asdf () nil))

(sb-ext:gc :full t)
(asdf:make :scenic :force t)

0 comments on commit 34189a0

Please sign in to comment.