Skip to content

Commit

Permalink
Fix CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Nov 29, 2020
1 parent 5055114 commit 9a38d8a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
resource_class: large
steps:
- checkout
- run:
name: Get rid of erroneous git config
command: |
rm -rf /home/circleci/.gitconfig
- restore_cache:
keys:
- v1-dependencies-{{ checksum "deps.edn" }}
Expand Down Expand Up @@ -43,6 +47,10 @@ jobs:
resource_class: large
steps:
- checkout
- run:
name: Get rid of erroneous git config
command: |
rm -rf /home/circleci/.gitconfig
- restore_cache:
keys:
- v1-dependencies-{{ checksum "deps.edn" }}
Expand Down Expand Up @@ -71,6 +79,10 @@ jobs:
LEIN_ROOT: "true"
steps:
- checkout
- run:
name: Get rid of erroneous git config
command: |
rm -rf /home/circleci/.gitconfig
- restore_cache:
keys:
- v1-dependencies-{{ checksum "deps.edn" }}
Expand Down
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
:extra-deps {cheshire./cheshire {:mvn/version "5.10.0"}
cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner"
:sha "cb96e80f6f3d3b307c59cbeb49bb0dcb3a2a780b"}}
:sha "b6b3193fcc42659d7e46ecd1884a228993441182"}}
:main-opts ["-m" "cognitect.test-runner"]}}}

0 comments on commit 9a38d8a

Please sign in to comment.