parent.rb 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #!/usr/bin/env ruby
  2. #
  3. #
  4. #
  5. if __FILE__ == $0
  6. # If we aren't on master we don't need to parent check
  7. branch = 'prod'
  8. exit(0) if ARGV[0] !~ /#{branch}/
  9. commit_id = ARGV[1]
  10. %x[/usr/bin/git checkout #{branch}]
  11. %x[/usr/bin/git merge #{commit_id}]
  12. count = 0
  13. #lines = %x[/usr/bin/git rev-list --left-right stg...master].split("\n")
  14. lines = %x[/usr/bin/git rev-list --left-right remotes/origin/stg...#{branch}].split("\n")
  15. lines.each do |commit|
  16. # next if they are in stage
  17. next if commit =~ /^</
  18. # remove the first char '>'
  19. commit = commit[1..-1]
  20. # check if any remote branches contain $commit
  21. results = %x[/usr/bin/git branch -q -r --contains #{commit} 2>/dev/null ]
  22. # if this comes back empty, nothing contains it, we can skip it as
  23. # we have probably created the merge commit here locally
  24. next if results.empty?
  25. # The results generally contain origin/pr/246/merge and origin/pr/246/head
  26. # this is the pull request which would contain the commit in question.
  27. #
  28. # If the results do not contain origin/stg then stage does not contain
  29. # the commit in question. Therefore we need to alert!
  30. unless results =~ /origin\/stg/
  31. puts "\nFAILED: (These commits are not in stage.)\n"
  32. puts "\t#{commit}"
  33. count += 1
  34. end
  35. end
  36. # Exit with count of commits in #{branch} but not stg
  37. exit(count)
  38. end
  39. __END__