series-push-hook.sh 520 B

12345678910111213141516171819202122232425262728293031
  1. #!/bin/sh
  2. #
  3. # Copyright (c) 2019 Linaro Limited
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. remote=$1
  8. url=$2
  9. local_ref=$3
  10. local_sha=$4
  11. remote_ref=$5
  12. remote_sha=$6
  13. z40=0000000000000000000000000000000000000000
  14. set -e exec
  15. echo "Run push "
  16. if [ "$local_sha" = $z40 ]
  17. then
  18. # Handle delete
  19. :
  20. else
  21. # At each (forced) push, examine all commits since $remote/main
  22. base_commit=`git rev-parse $remote/main`
  23. range="$base_commit..$local_sha"
  24. echo "Perform check patch"
  25. ${ZEPHYR_BASE}/scripts/checkpatch.pl --git $range
  26. fi