I'm beginning with pipelines. I have a simple project, and I'm trying to get it to run with the local pipeline. (my runners are version 5, if that matters)
The issue is in the default build setup.
One of the lines reads:
" echo ".bitbucket/pipelines/generated" >> .git/info/exclude".
The problem is that .git/info doesn't get automatically created when the git checkout happens, therefore, that fails, meaning that it never gets to ANY of the steps from my actual pipeline (which are the basic, swift default build and test steps).
I can't find any way to modify that build script it runs, nor can I find any way to have that directory auto-created by git.
Does anyone have any ideas?