Xcode bot does not see repository branches

Viewed 353

After updating the XCode to version 11.4 (11E146), I stopped seeing repository branches in the bot settings. But I see these repository branches in Source Controll Navigator. Does anyone know how I can fix it?

bot settings

2 Answers

Looks like this is fixed in XCode12, In case you still need to use XcodeServer on Xcode 11.4 - 11.5 then follow the below steps

In the final step, add a pre-integration script and add the below git commands

git pull
git checkout `your-branch-under-test`
git branch
Related