3
0

Build-Environment.json 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "indications": [
  3. {
  4. "name": "Insufficient disk space",
  5. "description": "Build node or EBS volume is out of disk space, rerun build with CLEAN_WORKSPACE parameter",
  6. "comment": "Build node or EBS volume is out of disk space, clean build node or the EBS volume",
  7. "single_line": true,
  8. "find_all": false,
  9. "log_patterns": [
  10. "^.*No space left on device.*$"
  11. ],
  12. "log_testcases": [
  13. "error: unable to open output file '...': 'No space left on device'"
  14. ],
  15. "owners": []
  16. },
  17. {
  18. "name": "Build node disconnected",
  19. "description": "Build node disconnected during the build",
  20. "comment": "Build node disconnected during the build, rerun the job",
  21. "single_line": true,
  22. "find_all": false,
  23. "log_patterns": [
  24. "^.*Agent went offline during the build.*$"
  25. ],
  26. "log_testcases": [
  27. "Agent went offline during the build"
  28. ],
  29. "owners": []
  30. },
  31. {
  32. "name": "Incremental build script error",
  33. "description": "Incremental build script error, merge latest from upstream",
  34. "comment": "Incremental build script error, merge latest from upstream",
  35. "single_line": true,
  36. "find_all": true,
  37. "log_patterns": [
  38. "^.*File.*incremental_build_util\\.py\", line \\d+.*$"
  39. ],
  40. "log_testcases": [
  41. "File \"scripts\\build\\bootstrap\\incremental_build_util.py\", line 87"
  42. ],
  43. "owners": []
  44. },
  45. {
  46. "name": "Corrupt PDB file",
  47. "description": "Corrupt PDB file, try build again with build parameter CLEAN_OUTPUT_DIRECTORY enabled",
  48. "comment": "Corrupt PDB file, try build again with build parameter CLEAN_OUTPUT_DIRECTORY enabled",
  49. "single_line": true,
  50. "find_all": true,
  51. "log_patterns": [
  52. "^.*fatal error LNK1285: corrupt PDB file.*$"
  53. ],
  54. "log_testcases": [
  55. "LINK : fatal error LNK1285: corrupt PDB file 'D:\\workspace\\o3de\\build\\windows_vs2019\\bin\\profile\\o3de.pdb'"
  56. ],
  57. "owners": []
  58. },
  59. {
  60. "name": "Case sensitive/insensitive issue",
  61. "description": "Once case changed in file name, run a clean build to fix the build failure.",
  62. "comment": "Once case changed in file name, run a clean build to fix the build failure",
  63. "single_line": true,
  64. "find_all": true,
  65. "log_patterns": [
  66. "^.*ModuleNotFoundError: No module named 'Prefab.*$"
  67. ],
  68. "log_testcases": [
  69. "ModuleNotFoundError: No module named 'Prefab"
  70. ],
  71. "owners": []
  72. },
  73. {
  74. "name": "Jenkins build node connectivity issue",
  75. "description": "Jenkins cannot reconnect to build nodes after Jenkins server restart.",
  76. "comment": "Jenkins cannot reconnect to build nodes after Jenkins server restart.",
  77. "single_line": true,
  78. "find_all": false,
  79. "log_patterns": [
  80. "^Killed part of.*after waiting for.*because we assume unknown agent.*is never going to appear$"
  81. ],
  82. "log_testcases": [
  83. "Killed part of O3DE » PR-9504 #2 after waiting for 5 min 0 sec because we assume unknown agent EC2 (us-west-2) - WIN2019_INC_3 (i-05a91a7e645fc20d1) is never going to appear"
  84. ],
  85. "owners": []
  86. }
  87. ]
  88. }