Skip to content

Commit

Permalink
More docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed Dec 1, 2023
1 parent 1ae25b2 commit 68a9d4b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
20 changes: 18 additions & 2 deletions src/core.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -516,11 +516,27 @@ and a way how to create new job types.
(40ants-ci/jobs/docs:build-docs function)
(40ants-ci/jobs/docs:build-docs class)

(40ants-ci/jobs/linter:linter function)
(40ants-ci/jobs/job:job class)
(40ants-ci/jobs/job:name (reader 40ants-ci/jobs/job:job))
(40ants-ci/jobs/job:os (reader 40ants-ci/jobs/job:job))
(40ants-ci/jobs/job:steps (reader 40ants-ci/jobs/job:job))
(40ants-ci/jobs/job:make-env generic-function)
(40ants-ci/jobs/job:use-matrix-p generic-function)
(40ants-ci/jobs/job:make-matrix generic-function)

(40ants-ci/jobs/lisp-job:lisp-job class)
(40ants-ci/jobs/lisp-job:lisp (reader 40ants-ci/jobs/lisp-job:lisp-job))
(40ants-ci/jobs/lisp-job:asdf-system (reader 40ants-ci/jobs/lisp-job:lisp-job))
(40ants-ci/jobs/lisp-job:quicklisp (reader 40ants-ci/jobs/lisp-job:lisp-job))

(40ants-ci/jobs/linter:linter class)
(40ants-ci/jobs/linter:linter function)

(40ants-ci/jobs/critic:critic class)
(40ants-ci/jobs/critic:critic function))
(40ants-ci/jobs/critic:critic function)

(40ants-ci/jobs/autotag:autotag class)
(40ants-ci/jobs/autotag:autotag function))


(defun generate (system &key path)
Expand Down
3 changes: 2 additions & 1 deletion src/jobs/autotag.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
:initform *default-token-pattern*
:type string
:documentation "Auth token pattern."
:reader token-pattern)))
:reader token-pattern))
(:documentation "This type of the job created a git tag when finds a new tag in specified file."))


(defun autotag (&key (filename *default-filename*)
Expand Down

0 comments on commit 68a9d4b

Please sign in to comment.