Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,13 @@ jobs:
steps:
- run:
name: Running tests with inlined deps
command: make test
command: |
mkdir -p target
make test 2>&1 | tee target/test-output.log
exit ${PIPESTATUS[0]}
- store_artifacts:
path: target/test-output.log
when: always
exercise_code_jarring:
description: |
Exercise jarring against given version of JDK and Clojure
Expand Down