UefiCpuPkg.ci.yaml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ## @file
  2. # CI configuration for UefiCpuPkg
  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. "8006", "main"
  19. ],
  20. ## Both file path and directory path are accepted.
  21. "IgnoreFiles": [
  22. ]
  23. },
  24. "CompilerPlugin": {
  25. "DscPath": "UefiCpuPkg.dsc"
  26. },
  27. ## options defined ci/Plugin/HostUnitTestCompilerPlugin
  28. "HostUnitTestCompilerPlugin": {
  29. "DscPath": "Test/UefiCpuPkgHostTest.dsc"
  30. },
  31. "CharEncodingCheck": {
  32. "IgnoreFiles": []
  33. },
  34. "DependencyCheck": {
  35. "AcceptableDependencies": [
  36. "MdePkg/MdePkg.dec",
  37. "MdeModulePkg/MdeModulePkg.dec",
  38. "UefiCpuPkg/UefiCpuPkg.dec"
  39. ],
  40. # For host based unit tests
  41. "AcceptableDependencies-HOST_APPLICATION":[
  42. "UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec",
  43. "CryptoPkg/CryptoPkg.dec"
  44. ],
  45. # For UEFI shell based apps
  46. "AcceptableDependencies-UEFI_APPLICATION":[],
  47. "IgnoreInf": []
  48. },
  49. "DscCompleteCheck": {
  50. "DscPath": "UefiCpuPkg.dsc",
  51. "IgnoreInf": [
  52. "UefiCpuPkg/ResetVector/FixupVtf/Vtf.inf",
  53. "UefiCpuPkg/ResetVector/Vtf0/Vtf0.inf",
  54. "UefiCpuPkg/ResetVector/Vtf0/Bin/ResetVector1G.inf"
  55. ]
  56. },
  57. "HostUnitTestDscCompleteCheck": {
  58. "IgnoreInf": [""],
  59. "DscPath": "Test/UefiCpuPkgHostTest.dsc"
  60. },
  61. "GuidCheck": {
  62. "IgnoreGuidName": ["SecCore", "ResetVector"], # Expected duplication for gEfiFirmwareVolumeTopFileGuid
  63. "IgnoreGuidValue": [],
  64. "IgnoreFoldersAndFiles": [],
  65. "IgnoreDuplicates": []
  66. },
  67. "LibraryClassCheck": {
  68. "IgnoreHeaderFile": []
  69. },
  70. ## options defined ci/Plugin/SpellCheck
  71. "SpellCheck": {
  72. "AuditOnly": True, # Fails test but run in AuditOnly mode to collect log
  73. "IgnoreFiles": [], # use gitignore syntax to ignore errors in matching files
  74. "ExtendWords": [], # words to extend to the dictionary for this package
  75. "IgnoreStandardPaths": [], # Standard Plugin defined paths that should be ignore
  76. "AdditionalIncludePaths": [] # Additional paths to spell check (wildcards supported)
  77. }
  78. }