Fork me on GitHub
#circleci
<
2020-12-28
>
FiVo12:12:14

I am trying to setup a CircleCI for a project and I am using tools.deps. One of my dependencies is pulled in via a git coordinate like so

{com.cognitect/test-runner {:git/url ""                                       :sha "209b64504cb3bd3b99ecfec7937b358a879f55c1"}}
This all runs fine locally, but somehow fails on circleci. Somebody already described the issue here https://github.com/cognitect-labs/test-runner/issues/23. I don't think it has actually anything to do with the test-runner project as I also tried a different project via git coordinates and it produced the same error. Anybody ran into this? It seems the cli tools somehow try to get the dependency via ssh-based access and that fails.

borkdude12:12:13

@finn.volkel

steps:
      - checkout
      - run:
          name: Get rid of erroneous git config
          command: |
              rm -rf ~/.gitconfig

🤯 3
borkdude12:12:22

quite bad that one has to do such a thing in a CI product, but it works

FiVo12:12:36

@borkdude awesome that worked bananadance