circleci

rm -rf /home/circleci/.gitconfig
FiVo 2020-12-28T12:43:14.057500Z

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 "<https://github.com/cognitect-labs/test-runner>"                                       :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.

borkdude 2020-12-28T12:44:13.058Z

@finn.volkel

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

🤯 1
borkdude 2020-12-28T12:44:22.058300Z

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

FiVo 2020-12-28T12:48:36.058900Z

@borkdude awesome that worked :bananadance: