3
0

Compilation.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "indications": [
  3. {
  4. "name": "Compilation error",
  5. "description": "Compilation error, see log for more details",
  6. "comment": "Compilation error, see log for more details",
  7. "single_line": false,
  8. "find_all": false,
  9. "log_patterns": [
  10. "The following build commands failed:.*\\(\\d+ failure\\)"
  11. ],
  12. "log_testcases": [
  13. "The following build commands failed:\\nLd /Users/lybuilder/workspace/o3de/build/ios/bin/debug/AutomatedTesting.GameLauncher.app/AutomatedTesting.GameLauncher normal\\n(1 failure)"
  14. ],
  15. "owners": []
  16. },
  17. {
  18. "name": "Ninja Build Compilation Failure",
  19. "description": "Build failed to compile, check above error message to see compilation error(s).",
  20. "comment": "Build failed to compile",
  21. "single_line": true,
  22. "find_all": true,
  23. "log_patterns": [
  24. "^.*ninja: build stopped: subcommand failed.*$"
  25. ],
  26. "log_testcases": [
  27. "ninja: build stopped: subcommand failed."
  28. ],
  29. "owners": []
  30. },
  31. {
  32. "name": "Warning is treated as an error",
  33. "description": "Warning is treated as an error, see log for more details",
  34. "comment": "Warning is treated as an error, see log for more details",
  35. "single_line": true,
  36. "find_all": true,
  37. "log_patterns": [
  38. "^.*error C2220: the following warning is treated as an error.*$"
  39. ],
  40. "log_testcases": [
  41. "D:/workspace/o3de/Code/Framework/AzCore/AzCore/Task/TaskExecutor.cpp(47,17): error C2220: the following warning is treated as an error [D:\\workspace\\o3de\\build\\windows_vs2019\\Code\\Framework\\AzCore\\AzCore.vcxproj]"
  42. ],
  43. "owners": []
  44. },
  45. {
  46. "name": "Local variable is initialized but not referenced",
  47. "description": "Warning C4189: local variable is initialized but not referenced. This warning is a result of an unused variable or parameter, see https://github.com/aws-lumberyard/build-failure-rca/blob/main/build-failure-rca/docs/warning_c4189.md for details",
  48. "comment": "",
  49. "single_line": true,
  50. "find_all": true,
  51. "log_patterns": [
  52. "^.*warning C4189: '[\\w]*': local variable is initialized but not referenced.*$"
  53. ],
  54. "log_testcases": [
  55. "D:/workspace/o3de/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RenderPass.cpp(301,30): warning C4189: 'success': local variable is initialized but not referenced"
  56. ],
  57. "owners": []
  58. }
  59. ]
  60. }