changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/pod/pod.asd

changeset 698: 96958d3eb5b0
parent: 9fa3b9154bb2
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 (defsystem :pod
2  :depends-on (:std :cli :obj :dat :net :flexi-streams)
3  :components ((:file "pkg")
4  (:file "err")
5  (:module "obj"
6  :components
7  ((:file "system")
8  (:file "secret")
9  (:file "network")
10  (:file "exec")
11  (:file "volume")
12  (:file "image")
13  (:file "container")
14  (:file "pod")))
15  (:file "containerfile")
16  (:file "api")
17  (:file "podman")
18  (:file "client")
19  (:file "util"))
20  :in-order-to ((test-op (test-op :pod/tests))))
21 
22 (defsystem :pod/tests
23  :depends-on (:rt :pod)
24  :components ((:file "tests"))
25  :perform (test-op (o c) (symbol-call :rt :do-tests :pod)))