Do you use cocaopods as well? I'm getting errors regarding it not being able to finding node in $PATH, even though it is clearly set correctly if I dump the env variables in the pre_xcodebuild script
Post
Replies
Boosts
Views
Activity
Anyone knows if the following would suffice to make Cocaopods (and other commands) use a personal access token for all Github calls, just in case part of the problem is rate limiting?
git config http.https://github.com.extraheader "Authentication Basic $BASE64_TOKEN"
{
echo "machine github.com login $GITHUB_USERNAME password $GITHUB_PERSONAL_ACCESS_TOKEN";
} > ~/.netrc
chmod 600 ~/.netrc
(in ci_post_clone.sh)
Yep. This has been like this for a long time thoug. Every now and then builds will fail with the same errors. But the last few weeks it has been completely impossible to gets builds to pass.
Is there any way to add a Github access token for the requests perhaps?