We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6eca55 commit 3d08683Copy full SHA for 3d08683
run-ci.sh
@@ -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