Add specifying task to candle run
[candle] / src / main / package.lisp
1 (defpackage #:candle (:use :cl)
2  (:export
3   #:server #:add-project #:delete-project #:refresh-project #:list-projects
4   #:project-branch-information #:run #:list-tasks #:*candle-dir* #:*job-system* #:*candle-dir* #:failures
5   #:project-job-information #:get-job-log #:retry-job #:job-project #:project-dir #:process-job-in-system
6   #:shutdown-system
7
8   #:candle-error #:candle-error-reason)
9  (:documentation "Main candle package.
10
11 Candle is continuous integration server and command line utility for common
12 lisp projects.  The package is mainly accessed through the command line
13 scripts in the bin directory."))
14
15 (defpackage #:candle-cli (:use :cl) (:export :run))
16 (defpackage #:candle-server-cli (:use :cl) (:export :run))
17 (defpackage #:candle-aws (:use :cl))
18 (defpackage #:candle-local (:use :cl))