-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path40ants-ci.asd
More file actions
24 lines (23 loc) · 935 Bytes
/
40ants-ci.asd
File metadata and controls
24 lines (23 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#-asdf3.1 (error "40ants-ci requires ASDF 3.1")
(defsystem "40ants-ci"
:author "Alexander Artemenko"
:license "BSD"
:class :40ants-asdf-system
:defsystem-depends-on ("40ants-asdf-system")
:pathname "src"
:depends-on ("40ants-ci/core"
"40ants-ci/jobs/job"
"40ants-ci/jobs/docs"
"40ants-ci/jobs/linter"
"40ants-ci/jobs/critic"
"40ants-ci/jobs/run-tests"
"40ants-ci/jobs/autotag"
"40ants-ci/workflow")
:description "A tool simplify continuous deployment for Common Lisp projects."
:homepage "https://40ants.com/ci/"
:source-control (:git "https://github.com/40ants/ci")
:path-to-changelog "src/changelog.lisp"
:perform (compile-op :before (o c)
#+ros.installing
(roswell:roswell '("install" "40ants/defmain")))
:in-order-to ((test-op (test-op 40ants-ci-test))))