; Copyright 2022 Frank Duncan (frank@consxy.com) under AGPL3. See distributed LICENSE.txt. (defpackage #:candle (:use :cl) (:export #:server #:add-project #:delete-project #:refresh-project #:list-projects #:project-branch-information #:run #:list-tasks #:*candle-dir* #:*job-system* #:*candle-dir* #:failures #:project-job-information #:get-job-log #:retry-job #:job-project #:project-dir #:process-job-in-system #:shutdown-system #:*environment* #:project-name #:candle-error #:candle-error-reason) (:documentation "Main candle package. Candle is continuous integration server and command line utility for common lisp projects. The package is mainly accessed through the command line scripts in the bin directory.")) (defpackage #:candle-cli (:use :cl) (:export :run)) (defpackage #:candle-server-cli (:use :cl) (:export :run)) (defpackage #:candle-aws (:use :cl)) (defpackage #:candle-local (:use :cl))