3 (defvar *candle-dir* nil
8 A pathname or pathstring
16 The main directory for all candle work to be done in. When the server is running
17 in local mode, this is also the place that builds are built in")
19 (defvar *environment* :local
32 The environment that candle is currently running. Useful to do switching in tests
33 or in the .candle file to do extra boot up processing.")
35 (define-condition candle-error (error)
36 ((reason :initarg :reason :reader candle-error-reason))
38 "An error on the server that needs to be handled in the client.
40 This error is usually because some input was incorrect. The response will
41 have a reason that is a keyword that must be handled. The current used keywords
44 - :project-does-not-exist - if the project isn't in the database
45 - :invalid-project-name - the specified name doesn't match the requirements
46 - :invlides-project-uri - the uri isn't reachable by git
47 - :project-name-taken - name is a duplicate
48 - :project-failed-to-get-branches - when refreshing fails
49 - :job-does-not-exist - the specified job can't be found"))
51 (setf (documentation 'candle-error-reason 'function)
52 "CANDLE-ERROR-REASON CANDLE-ERROR => REASON
56 CANDLE-ERROR: the error for the reason
57 REASON: a keyword representing the reason
61 Returns the reason for this candle error. See the documentation of
62 the candle-error condition for possible values")
64 (defun raise-candle-error (reason) (error (make-instance 'candle-error :reason reason)))
66 (lame-db:defdbstruct project name src)
69 ; - :queued - to be run
70 ; - :failed - job failed
71 ; - :succeeded - job succeeded
72 ; - :no-candle-file - no candle file was found
73 ; - :in-progress - job is running
74 (lame-db:defdbstruct job status sha create-date log (project :join project))
76 (setf (documentation 'job-project 'function)
77 "JOB-PROJECT JOB => PROJECT
82 PROJECT: the project for this job
86 Returns the project for the job in question.")
88 ; in-git here refers to whether the branch exists in git. As branches get deleted,
89 ; this will get set to nil but we keep them around for historical reference
90 (lame-db:defdbstruct branch name in-git (project :join project) (job :join job))
92 (defun project-dir (project)
93 "PROJECT-DIR PROJECT => DIR
98 DIR: the working directory for the project
102 Returns the checked out directory for this project, specifically for use
103 in candle. Resides in the *CANDLE-DIR*."
104 (format nil "~Arepos/~A/" *candle-dir* (project-name project)))