diff options
author | Denys <[email protected]> | 2019-10-01 14:24:20 +0100 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-23 17:15:42 +0000 |
commit | 6bca192e12a565b20cee601f51875064a5458d1a (patch) | |
tree | b88cf1e0a0b9854793cb29dfe94cd78aafef73ff /.gitlab | |
parent | 9d56ed199b911c1085ea558d243ab543af47ac8e (diff) |
gitlab: add bug report template
Reviewed-by: Jason Ekstrand <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Pierre-Eric Pelloux-Prayer <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4089>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4089>
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/issue_templates/Bug Report.md | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/.gitlab/issue_templates/Bug Report.md b/.gitlab/issue_templates/Bug Report.md new file mode 100644 index 00000000000..cb35aff8916 --- /dev/null +++ b/.gitlab/issue_templates/Bug Report.md @@ -0,0 +1,54 @@ +### Before submitting your bug report: +- Check if a new version of Mesa is available which might have fixed the problem. +- If you can, check if the latest development version (git master) works better. +- Check if your bug has already been reported here. +- For any logs, backtraces, etc - use [code blocks](https://docs.gitlab.com/ee/user/markdown.html#code-spans-and-blocks) +- As examples of good bug reports you may review one of these - #2598, #2615, #2608 + + +Otherwise, please fill the requested information below. +And please remove anything that doesn't apply to keep things readable :) + + +### System information + +Please post `inxi -GSC -xx` output OR fill information below manually + + +- OS: (`cat /etc/os-release | grep "NAME"`) +- GPU: (`lspci | grep VGA` or `lshw -C display`) +- Kernel version: (run `uname -a`) +- Mesa version: (`glxinfo -B | grep "OpenGL version string"`) +- Xserver version (if applicable): (`sudo X -version`) +- Desktop manager and compositor: + +#### If applicable +- DXVK version: +- Wine/Proton version: + + +### Describe the issue + +Please describe what you are doing, what you expect and what you're +seeing instead. + +"It doesn't work" usually is not a helpful description of an issue. +The more detail about how things are going wrong, the better. + + +### Regression + +Did it used to work? It can greatly help to know when the issue started. + + +### Log files as attachment +- Output of `dmesg` +- Backtrace +- Gpu hang details + + +### Screenshots/video files (if applicable) + + + +### Any extra information would be greatly appreciated |