Skip to content

Commit

Permalink
Use different example as template.
Browse files Browse the repository at this point in the history
  • Loading branch information
ruedigergad committed Dec 31, 2023
1 parent 29ef5bf commit 630421c
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
version: 2.1

orbs:
coveralls: coveralls/[email protected]
jobs:
run_tests_job_1:
run_tests_job_2:
docker:
- image: circleci/clojure:lein-2.9.5
working_directory: ~/repo
environment:
LEIN_ROOT: "true"
JVM_OPTS: -Xmx3200m
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "project.clj" }}
- v1-dependencies-
- run: lein deps
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "project.clj" }}
- run: 'lein cloverage -t "bowerick.test.*" -e "bowerick.JmsController"'
- coveralls/upload
workflows:
run_tests:
jobs:
- run_tests_job

workflows: null
jobs:
run_tests_job:
docker:
- image: circleci/clojure:lein-2.9.5
working_directory: ~/repo
environment:
LEIN_ROOT: "true"
JVM_OPTS: -Xmx3200m
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "project.clj" }}
- v1-dependencies-
- run: lein deps
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "project.clj" }}
- run: 'lein cloverage -t "bowerick.test.*" -e "bowerick.JmsController"'
- coveralls/upload

workflows:
run_tests:
jobs:
- run_tests_job

0 comments on commit 630421c

Please sign in to comment.