Skip to content

Commit d577d3d

Browse files
committed
Exercise jarring process in CI
1 parent 80b1b37 commit d577d3d

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.circleci/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,12 @@ jobs:
134134
- run:
135135
name: Running tests with inlined deps
136136
command: make test
137+
- run:
138+
name: Exercise jarring
139+
command: make jar
140+
- run:
141+
name: Verify that jarring includes the plugin
142+
command: grep --silent "refactor_nrepl/plugin.clj" <(zipinfo -1 target/refactor-nrepl-*.jar)
137143

138144
######################################################################
139145
#

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,8 @@ release:
4040
deploy: .inline-deps
4141
lein with-profile -user,+$(VERSION),+plugin.mranderson/config deploy clojars
4242

43+
jar: .inline-deps
44+
lein with-profile -user,+$(VERSION),+plugin.mranderson/config jar
45+
4346
install: .inline-deps
4447
lein with-profile -user,+$(VERSION),+plugin.mranderson/config install

0 commit comments

Comments
 (0)