-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcl-aws-lambda.asd
More file actions
29 lines (25 loc) · 802 Bytes
/
cl-aws-lambda.asd
File metadata and controls
29 lines (25 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(defsystem cl-aws-lambda
:license "MIT"
:pathname "src/"
:depends-on ("alexandria"
"dexador"
"jonathan"
"trivial-types"
"vom"
"vom-json")
:components ((:file "conditions")
(:file "environment")
(:file "runtime-interface")
(:file "runtime"))
:in-order-to ((test-op (test-op cl-aws-lambda/test))))
(defsystem cl-aws-lambda/test
:pathname "t/"
:depends-on ("cl-aws-lambda"
"rove")
:components ((:file "runtime-interface"))
:perform (test-op (o c)
(funcall (read-from-string "ROVE:RUN") c :env '(("AWS_LAMBDA_RUNTIME_API" . "test-aws-runtime:8000")))))
(defsystem cl-aws-lambda/asdf
:depends-on ("asdf")
:pathname "src/"
:components ((:file "asdf")))