I'm running multiple jobs in jenkins, they all work in the same repo but in different files, but sometimes it seems there are errors on race condition when pushing.
This happens when two jobs (or more) run at the same time. They pull from github repo, then different files are change in each job, when is time to push and another job pushed before then the second job it will end up with push issues. Trying to fix this race condition I'm doing 'git pull' before commit, then I do 'git pull' once more in case another job updated the repo during that time, then I run 'git push' but sometimes another job pushed before I could push causing this the push to fail
Is there a way to only tell git to push a single file ? (I belive not but may be I'm wrong) or someone ran into this scenario and have a good way to avoid this race conditions?
This is the error I usually get:
git push
Error reading response length from authentication socket.
To git@github.com:<my repo>.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'git@github.com:<my repo>.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes before pushing again. See the 'Note about
fast-forwards' section of 'git push --help' for details.
Thank you!