02_runtime_bug.yml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. name: Runtime bug report
  2. description: Report runtime bugs
  3. labels: ['Type: 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 [ESP-IDF Programming Guide](https://docs.espressif.com/projects/esp-idf/en/latest/) and the issue is not addressed there.
  12. required: true
  13. - label: I have updated my IDF 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: idf_version
  19. attributes:
  20. label: IDF version.
  21. description: On which IDF version does this issue occur on? Run `git describe --tags` to find it.
  22. placeholder: ex. v3.2-dev-1148-g96cd3b75c
  23. validations:
  24. required: true
  25. - type: input
  26. id: chip_revision
  27. attributes:
  28. label: Espressif SoC revision.
  29. description: On which Espressif SoC revision does your application run on? Run `esptool chip_id` to find it.
  30. placeholder: ex. ESP32-C3 (QFN32) (revision v0.3)
  31. validations:
  32. required: true
  33. - type: dropdown
  34. id: operating_system
  35. attributes:
  36. label: Operating System used.
  37. multiple: false
  38. options:
  39. - Windows
  40. - Linux
  41. - macOS
  42. validations:
  43. required: true
  44. - type: dropdown
  45. id: build
  46. attributes:
  47. label: How did you build your project?
  48. multiple: false
  49. options:
  50. - Command line with Make
  51. - Command line with CMake
  52. - Command line with idf.py
  53. - Eclipse IDE
  54. - CLion IDE
  55. - VS Code IDE
  56. - Other (please specify in More Information)
  57. validations:
  58. required: true
  59. - type: dropdown
  60. id: windows_comand_line
  61. attributes:
  62. label: If you are using Windows, please specify command line type.
  63. multiple: false
  64. options:
  65. - PowerShell
  66. - CMD
  67. validations:
  68. required: false
  69. - type: input
  70. id: devkit
  71. attributes:
  72. label: Development Kit.
  73. description: On which Development Kit does this issue occur on?
  74. placeholder: ex. ESP32-Wrover-Kit v2 | Custom Board | QEMU
  75. validations:
  76. required: true
  77. - type: dropdown
  78. id: power_supply
  79. attributes:
  80. label: Power Supply used.
  81. multiple: false
  82. options:
  83. - USB
  84. - External 5V
  85. - External 3.3V
  86. - Battery
  87. validations:
  88. required: true
  89. - type: textarea
  90. id: expected
  91. attributes:
  92. label: What is the expected behavior?
  93. description: Please provide a clear and concise description of the expected behavior.
  94. placeholder: I expected it to...
  95. validations:
  96. required: true
  97. - type: textarea
  98. id: actual
  99. attributes:
  100. label: What is the actual behavior?
  101. description: Please describe actual behavior.
  102. placeholder: Instead it...
  103. validations:
  104. required: true
  105. - type: textarea
  106. id: steps
  107. attributes:
  108. label: Steps to reproduce.
  109. description: 'How do you trigger this bug? Please walk us through it step by step. Please attach your code here.'
  110. value: |
  111. 1. Step
  112. 2. Step
  113. 3. Step
  114. ...
  115. validations:
  116. required: true
  117. - type: textarea
  118. id: debug_logs
  119. attributes:
  120. label: Debug Logs.
  121. description: Debug log goes here, should contain the backtrace, as well as the reset source if it is a crash.
  122. placeholder: Your log goes here.
  123. render: plain
  124. validations:
  125. required: false
  126. - type: textarea
  127. id: more-info
  128. attributes:
  129. label: More Information.
  130. description: Do you have any other information from investigating this?
  131. placeholder: ex. I tried on my friend's Windows 10 PC and the command works there.
  132. validations:
  133. required: false