01_build_install_bug.yml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. name: Installation or build bug report
  2. description: Report installation or build bugs
  3. labels: ['bug']
  4. body:
  5. - type: checkboxes
  6. id: checklist
  7. attributes:
  8. label: Answers checklist.
  9. description: Before submitting a new issue, please follow the checklist and try to find the answer.
  10. options:
  11. - label: I have read the documentation [XiaoZhi AI Programming Guide](https://ccnphfhqs21z.feishu.cn/wiki/F5krwD16viZoF0kKkvDcrZNYnhb) and the issue is not addressed there.
  12. required: true
  13. - label: I have updated my branch (master or release) to the latest version and checked that the issue is present there.
  14. required: true
  15. - label: I have searched the issue tracker for a similar issue and not found a similar issue.
  16. required: true
  17. - type: input
  18. id: xiaozhi_ai_version
  19. attributes:
  20. label: XiaoZhi AI version.
  21. description: On which XiaoZhi AI version does this issue occur on? Run `git describe --tags` to find it.
  22. placeholder: ex. v1.1.0-44-g140aab8
  23. validations:
  24. required: true
  25. - type: dropdown
  26. id: operating_system
  27. attributes:
  28. label: Operating System used.
  29. multiple: false
  30. options:
  31. - Windows
  32. - Linux
  33. - macOS
  34. validations:
  35. required: true
  36. - type: dropdown
  37. id: build
  38. attributes:
  39. label: How did you build your project?
  40. multiple: false
  41. options:
  42. - Command line with CMake
  43. - Command line with idf.py
  44. - CLion IDE
  45. - VS Code IDE/Cursor
  46. - Other (please specify in More Information)
  47. validations:
  48. required: true
  49. - type: dropdown
  50. id: windows_comand_line
  51. attributes:
  52. label: If you are using Windows, please specify command line type.
  53. multiple: false
  54. options:
  55. - PowerShell
  56. - CMD
  57. validations:
  58. required: false
  59. - type: textarea
  60. id: expected
  61. attributes:
  62. label: What is the expected behavior?
  63. description: Please provide a clear and concise description of the expected behavior.
  64. placeholder: I expected it to...
  65. validations:
  66. required: true
  67. - type: textarea
  68. id: actual
  69. attributes:
  70. label: What is the actual behavior?
  71. description: Please describe actual behavior.
  72. placeholder: Instead it...
  73. validations:
  74. required: true
  75. - type: textarea
  76. id: steps
  77. attributes:
  78. label: Steps to reproduce.
  79. description: 'How do you trigger this bug? Please walk us through it step by step. If this is build bug, please attach sdkconfig file (from your project folder). Please attach your code here.'
  80. value: |
  81. 1. Step
  82. 2. Step
  83. 3. Step
  84. ...
  85. validations:
  86. required: true
  87. - type: textarea
  88. id: debug_logs
  89. attributes:
  90. label: Build or installation Logs.
  91. description: Build or installation log goes here, should contain the backtrace, as well as the reset source if it is a crash.
  92. placeholder: Your log goes here.
  93. render: plain
  94. validations:
  95. required: false
  96. - type: textarea
  97. id: more-info
  98. attributes:
  99. label: More Information.
  100. description: Do you have any other information from investigating this?
  101. placeholder: ex. Any more.
  102. validations:
  103. required: false