Skip to content

Commit 3d08683

Browse files
committed
add the file to run
1 parent d6eca55 commit 3d08683

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

run-ci.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/local/bin/sbcl
2+
3+
(require "sb-posix")
4+
5+
#-quicklisp
6+
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
7+
(user-homedir-pathname))))
8+
(when (probe-file quicklisp-init)
9+
(load quicklisp-init)))
10+
11+
(defparameter *pwd* (concatenate 'string (sb-posix:getcwd) "/"))
12+
13+
(push *pwd* asdf:*central-registry*)
14+
15+
(load "make.lisp")
16+
(build-files)

0 commit comments

Comments
 (0)