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.steps:
- checkout
- run:
name: Get rid of erroneous git config
command: |
rm -rf ~/.gitconfig
quite bad that one has to do such a thing in a CI product, but it works
@borkdude awesome that worked :bananadance: