SignedCapsulePkg.ci.yaml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. ## @file
  2. # Core CI configuration for SignedCapsulePkg
  3. #
  4. # Copyright (c) Microsoft Corporation
  5. #
  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. ## options defined .pytool/Plugin/CompilerPlugin
  24. "CompilerPlugin": {
  25. "DscPath": "SignedCapsulePkg.dsc"
  26. },
  27. ## options defined .pytool/Plugin/HostUnitTestCompilerPlugin
  28. "HostUnitTestCompilerPlugin": {
  29. "DscPath": "" # Don't support this test
  30. },
  31. ## options defined .pytool/Plugin/CharEncodingCheck
  32. "CharEncodingCheck": {
  33. "IgnoreFiles": []
  34. },
  35. ## options defined .pytool/Plugin/DependencyCheck
  36. "DependencyCheck": {
  37. "AcceptableDependencies": [
  38. "MdeModulePkg/MdeModulePkg.dec",
  39. "MdePkg/MdePkg.dec",
  40. "SecurityPkg/SecurityPkg.dec",
  41. "SignedCapsulePkg/SignedCapsulePkg.dec"
  42. ],
  43. # For host based unit tests
  44. "AcceptableDependencies-HOST_APPLICATION":[
  45. "UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec"
  46. ],
  47. # For UEFI shell based apps
  48. "AcceptableDependencies-UEFI_APPLICATION":[],
  49. "IgnoreInf": []
  50. },
  51. ## options defined .pytool/Plugin/DscCompleteCheck
  52. "DscCompleteCheck": {
  53. "IgnoreInf": [""],
  54. "DscPath": "SignedCapsulePkg.dsc"
  55. },
  56. ## options defined .pytool/Plugin/HostUnitTestDscCompleteCheck
  57. "HostUnitTestDscCompleteCheck": {
  58. "IgnoreInf": [""],
  59. "DscPath": "" # Don't support this test
  60. },
  61. ## options defined .pytool/Plugin/GuidCheck
  62. "GuidCheck": {
  63. "IgnoreGuidName": [],
  64. "IgnoreGuidValue": [],
  65. "IgnoreFoldersAndFiles": [],
  66. "IgnoreDuplicates": [],
  67. },
  68. ## options defined .pytool/Plugin/LibraryClassCheck
  69. "LibraryClassCheck": {
  70. "IgnoreHeaderFile": []
  71. },
  72. ## options defined .pytool/Plugin/SpellCheck
  73. "SpellCheck": {
  74. "AuditOnly": True, # Failures need to be reviewed and resolved in the future
  75. "IgnoreFiles": [], # use gitignore syntax to ignore errors in matching files
  76. "ExtendWords": [], # words to extend to the dictionary for this package
  77. "IgnoreStandardPaths": [], # Standard Plugin defined paths that should be ignore
  78. "AdditionalIncludePaths": [] # Additional paths to spell check (wildcards supported)
  79. }
  80. }