what_changed.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #!/usr/bin/env python3
  2. # SPDX-License-Identifier: Apache-2.0
  3. # Copyright (c) 2020 Intel Corporation
  4. # Check if full twister is needed.
  5. import os
  6. import sh
  7. import argparse
  8. import fnmatch
  9. if "ZEPHYR_BASE" not in os.environ:
  10. exit("$ZEPHYR_BASE environment variable undefined.")
  11. repository_path = os.environ['ZEPHYR_BASE']
  12. sh_special_args = {
  13. '_tty_out': False,
  14. '_cwd': repository_path
  15. }
  16. def parse_args():
  17. parser = argparse.ArgumentParser(
  18. description="Check if change requires full twister")
  19. parser.add_argument('-c', '--commits', default=None,
  20. help="Commit range in the form: a..b")
  21. return parser.parse_args()
  22. def main():
  23. args = parse_args()
  24. if not args.commits:
  25. exit(1)
  26. # pylint does not like the 'sh' library
  27. # pylint: disable=too-many-function-args,unexpected-keyword-arg
  28. commit = sh.git("diff", "--name-only", args.commits, **sh_special_args)
  29. files = set()
  30. files.update(commit.split("\n"))
  31. with open("scripts/ci/twister_ignore.txt", "r") as sc_ignore:
  32. ignores = sc_ignore.read().splitlines()
  33. ignores = filter(lambda x: not x.startswith("#"), ignores)
  34. found = set()
  35. files = list(filter(lambda x: x, files))
  36. for pattern in ignores:
  37. if pattern:
  38. found.update(fnmatch.filter(files, pattern))
  39. if sorted(files) != sorted(found):
  40. print("full")
  41. if __name__ == "__main__":
  42. main()