PcAtChipsetPkg.ci.yaml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ## @file
  2. # CI configuration for PcAtChipsetPkg
  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. ## options defined .pytool/Plugin/LicenseCheck
  10. "LicenseCheck": {
  11. "IgnoreFiles": []
  12. },
  13. "EccCheck": {
  14. ## Exception sample looks like below:
  15. ## "ExceptionList": [
  16. ## "<ErrorID>", "<KeyWord>"
  17. ## ]
  18. "ExceptionList": [
  19. ],
  20. ## Both file path and directory path are accepted.
  21. "IgnoreFiles": [
  22. ]
  23. },
  24. "CompilerPlugin": {
  25. "DscPath": "PcAtChipsetPkg.dsc"
  26. },
  27. "CharEncodingCheck": {
  28. "IgnoreFiles": []
  29. },
  30. "DependencyCheck": {
  31. "AcceptableDependencies": [
  32. "MdePkg/MdePkg.dec",
  33. "PcAtChipsetPkg/PcAtChipsetPkg.dec",
  34. "UefiCpuPkg/UefiCpuPkg.dec"
  35. ],
  36. # For host based unit tests
  37. "AcceptableDependencies-HOST_APPLICATION":[],
  38. # For UEFI shell based apps
  39. "AcceptableDependencies-UEFI_APPLICATION":[],
  40. "IgnoreInf": []
  41. },
  42. "DscCompleteCheck": {
  43. "DscPath": "PcAtChipsetPkg.dsc",
  44. "IgnoreInf": []
  45. },
  46. "GuidCheck": {
  47. "IgnoreGuidName": [],
  48. "IgnoreGuidValue": [],
  49. "IgnoreFoldersAndFiles": [],
  50. "IgnoreDuplicates": []
  51. },
  52. "LibraryClassCheck": {
  53. "IgnoreHeaderFile": []
  54. },
  55. "SpellCheck": {
  56. "ExtendWords": [
  57. "ENUMER", # this is part of an IDE enum
  58. "PCATCHIPSET",
  59. "TXRDY"
  60. ]
  61. }
  62. }