pre-commit 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #!/bin/sh
  2. ######################################################################
  3. # Pre-commit hook for verifying that generated library modules match
  4. # their EXPECTED content. Library modules are generated from fragments
  5. # under the 'roles/lib_(openshift|utils)/src/' directories.
  6. #
  7. # If the attempted commit modified files under the
  8. # 'roles/lib_(openshift|utils)/' directories this script will run the
  9. # 'generate.py --verify' command.
  10. #
  11. # This script will NOT RUN if module source fragments are modified but
  12. # not part of the commit. I.e., you can still make commits if you
  13. # modified module fragments AND other files but are not comitting the
  14. # the module fragments.
  15. # Did the commit modify any source module files?
  16. CHANGES=`git diff-index --stat --cached HEAD | grep -E '^ roles/lib_(openshift|utils)/src/(class|doc|ansible|lib)/'`
  17. RET_CODE=$?
  18. ABORT=0
  19. if [ "${RET_CODE}" -eq "0" ]; then
  20. # Modifications detected. Run the verification scripts.
  21. # Which was it?
  22. if $(echo $CHANGES | grep -q 'roles/lib_openshift/'); then
  23. echo "Validating lib_openshift..."
  24. ./roles/lib_openshift/src/generate.py --verify
  25. if [ "${?}" -ne "0" ]; then
  26. ABORT=1
  27. fi
  28. fi
  29. if $(echo $CHANGES | grep -q 'roles/lib_utils/'); then
  30. echo "Validating lib_utils..."
  31. ./roles/lib_utils/src/generate.py --verify
  32. if [ "${?}" -ne "0" ]; then
  33. ABORT=1
  34. fi
  35. fi
  36. if [ "${ABORT}" -eq "1" ]; then
  37. cat <<EOF
  38. ERROR: Module verification failed. Generated files do not match fragments.
  39. Choices to continue:
  40. 1) Run './roles/lib_(openshift|utils)/src/generate.py' from the root of
  41. the repo to regenerate the files
  42. 2) Skip verification with '--no-verify' option to 'git commit'
  43. EOF
  44. fi
  45. fi
  46. exit $ABORT