File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -116,10 +116,7 @@ jobs:
116
116
cache_version : << parameters.clojure_version >>
117
117
steps :
118
118
- run :
119
- name : Downloading Source deps
120
- command : make source-deps
121
- - run :
122
- name : Running tests
119
+ name : Running tests with inlined deps
123
120
command : make test
124
121
125
122
# #####################################################################
Original file line number Diff line number Diff line change 2
2
3
3
VERSION ?= 1.10
4
4
5
- source-deps :
6
- lein source-deps :prefix-exclusions " [\" classlojure\" ]"
5
+ .source-deps :
6
+ lein source-deps
7
+ touch .source-deps
7
8
8
- test :
9
+ source-deps : .source-deps
10
+
11
+ test : .source-deps
9
12
lein with-profile +$(VERSION ) ,+plugin.mranderson/config test
10
13
11
14
@@ -27,3 +30,4 @@ deploy:
27
30
28
31
clean :
29
32
lein clean
33
+ rm -f .source-deps
You can’t perform that action at this time.
0 commit comments