FatPkg.ci.yaml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. ## @file
  2. # CI configuration for FatPkg
  3. #
  4. # Copyright (c) Microsoft Corporation
  5. # Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
  6. # SPDX-License-Identifier: BSD-2-Clause-Patent
  7. ##
  8. {
  9. "LicenseCheck": {
  10. "IgnoreFiles": []
  11. },
  12. "EccCheck": {
  13. ## Exception sample looks like below:
  14. ## "ExceptionList": [
  15. ## "<ErrorID>", "<KeyWord>"
  16. ## ]
  17. "ExceptionList": [
  18. ],
  19. ## Both file path and directory path are accepted.
  20. "IgnoreFiles": [
  21. ]
  22. },
  23. "CompilerPlugin": {
  24. "DscPath": "FatPkg.dsc"
  25. },
  26. "CharEncodingCheck": {
  27. "IgnoreFiles": []
  28. },
  29. "DependencyCheck": {
  30. "AcceptableDependencies": [
  31. "MdePkg/MdePkg.dec",
  32. "MdeModulePkg/MdeModulePkg.dec",
  33. ],
  34. # For host based unit tests
  35. "AcceptableDependencies-HOST_APPLICATION":[],
  36. # For UEFI shell based apps
  37. "AcceptableDependencies-UEFI_APPLICATION":[],
  38. "IgnoreInf": []
  39. },
  40. "DscCompleteCheck": {
  41. "IgnoreInf": [],
  42. "DscPath": "FatPkg.dsc"
  43. },
  44. "GuidCheck": {
  45. "IgnoreGuidName": [],
  46. "IgnoreGuidValue": [],
  47. "IgnoreFoldersAndFiles": []
  48. },
  49. "LibraryClassCheck": {
  50. "IgnoreHeaderFile": []
  51. },
  52. "SpellCheck": {
  53. "ExtendWords": [
  54. "ELTORITO",
  55. "FHAND",
  56. "IFILE",
  57. "OFILE",
  58. "FDISKed",
  59. "Lfnbuffer",
  60. "FFFFFFFFL",
  61. "CDVOL",
  62. "DMDEPKG"
  63. ]
  64. }
  65. }