|
7 | 7 | rm -f .inline-deps
|
8 | 8 |
|
9 | 9 | .inline-deps: clean
|
10 |
| - lein with-profile -user,+$(VERSION) inline-deps |
| 10 | + lein with-profile -user,-dev,+$(VERSION) inline-deps |
11 | 11 | touch .inline-deps
|
12 | 12 |
|
13 | 13 | inline-deps: .inline-deps
|
14 | 14 |
|
15 | 15 | fast-test: clean
|
16 |
| - lein with-profile -user,+$(VERSION) test |
| 16 | + lein with-profile -user,-dev,+$(VERSION) test |
| 17 | + |
| 18 | +quick-test: fast-test |
17 | 19 |
|
18 | 20 | test: .inline-deps
|
19 |
| - lein with-profile -user,+$(VERSION),+plugin.mranderson/config test |
| 21 | + lein with-profile -user,-dev,+$(VERSION),+plugin.mranderson/config test |
20 | 22 |
|
21 | 23 | cljfmt:
|
22 |
| - lein with-profile -user,+$(VERSION),+cljfmt cljfmt check |
| 24 | + lein with-profile -user,-dev,+$(VERSION),+cljfmt cljfmt check |
23 | 25 |
|
24 | 26 | cljfmt-fix:
|
25 |
| - lein with-profile -user,+$(VERSION),+cljfmt cljfmt fix |
| 27 | + lein with-profile -user,-dev,+$(VERSION),+cljfmt cljfmt fix |
26 | 28 |
|
27 | 29 | eastwood:
|
28 |
| - lein with-profile -user,+$(VERSION),+deploy,+eastwood eastwood |
| 30 | + lein with-profile -user,-dev,+$(VERSION),+deploy,+test,+eastwood eastwood |
29 | 31 |
|
30 | 32 | kondo:
|
31 |
| - lein with-profile -dev,+$(VERSION),+clj-kondo run -m clj-kondo.main --lint src test |
| 33 | + lein with-profile -user,-dev,+$(VERSION),+clj-kondo run -m clj-kondo.main --lint src test |
32 | 34 |
|
33 | 35 |
|
34 | 36 | # Deployment is performed via CI by creating a git tag prefixed with "v".
|
35 | 37 | # Please do not deploy locally as it skips various measures (particularly around mranderson).
|
36 | 38 | deploy: check-env .inline-deps
|
37 |
| - lein with-profile -user,+$(VERSION),+plugin.mranderson/config deploy clojars |
| 39 | + lein with-profile -user,-dev,+$(VERSION),+plugin.mranderson/config deploy clojars |
38 | 40 |
|
39 | 41 | jar: .inline-deps
|
40 |
| - lein with-profile -user,+$(VERSION),+plugin.mranderson/config jar |
| 42 | + lein with-profile -user,-dev,+$(VERSION),+plugin.mranderson/config jar |
41 | 43 |
|
42 | 44 | # Usage: PROJECT_VERSION=3.7.1 make install
|
43 | 45 | # PROJECT_VERSION is needed because it's not computed dynamically
|
44 | 46 | install: check-install-env .inline-deps
|
45 |
| - LEIN_JVM_OPTS="-Dmranderson.internal.no-parallelism=true" lein with-profile -user,+$(VERSION),+plugin.mranderson/config install |
| 47 | + LEIN_JVM_OPTS="-Dmranderson.internal.no-parallelism=true" lein with-profile -user,-dev,+$(VERSION),+plugin.mranderson/config install |
46 | 48 |
|
47 | 49 | check-env:
|
48 | 50 | ifndef CLOJARS_USERNAME
|
|
0 commit comments