Skip to content

Commit 3a3743e

Browse files
Extract features into their own system for loading purposes
1 parent c09c8c8 commit 3a3743e

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

ci-utils-features.asd

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
(defsystem "ci-utils-features"
3+
:description "An internal system that loads the features before loading the rest of the systems"
4+
:author "Neil Lindquist <NeilLindquist5@gmail.com>"
5+
:license "MIT"
6+
:pathname "src"
7+
:components ((:file "features")))

ci-utils.asd

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
:version "0.0.0"
55
:author "Neil Lindquist <NeilLindquist5@gmail.com>"
66
:license "MIT"
7+
:depends-on ("ci-utils-features")
78
:pathname "src"
89
:serial t
9-
:components ((:file "features")
10-
(:file "ci-utils"))
10+
:components ((:file "ci-utils"))
1111
:in-order-to ((test-op (test-op "ci-utils/test"))))
1212

1313
(defsystem "ci-utils/coveralls"
1414
:description "A set of tools for using CI platforms"
1515
:version "0.0.0"
1616
:author "Neil Lindquist <NeilLindquist5@gmail.com>"
1717
:license "MIT"
18-
:defsystem-depends-on ("ci-utils")
18+
:defsystem-depends-on ("ci-utils-features")
1919
:depends-on ("ci-utils"
2020
(:feature :coveralls "cl-coveralls")
2121
"split-sequence")
@@ -28,7 +28,8 @@
2828
:description "Test for CI-Utils"
2929
:author "Neil Lindquist <NeilLindquist5@gmail.com>"
3030
:license "MIT"
31-
:depends-on ("ci-utils"
31+
:depends-on ("ci-utils-features"
32+
"ci-utils"
3233
"ci-utils/coveralls"
3334
"fiveam")
3435
:pathname "t"

0 commit comments

Comments
 (0)