mirror of https://github.com/darlinghq/darling
Add Issue Templates (#832)
* Add Some Issue Templates * Improve * Improve Templates * Add Code Blocks * Reword * Reword LKM Bug Description * Add dmesg Output
This commit is contained in:
parent
77da61ee85
commit
69a3b39766
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
name: Build Issue
|
||||
about: An issue building Darling
|
||||
labels: 'build'
|
||||
---
|
||||
|
||||
**Build Log**
|
||||
What is the build error?
|
||||
```
|
||||
Put the build log here!
|
||||
```
|
||||
|
||||
**System Information**
|
||||
What system are you building with?
|
||||
|
||||
| Software | Version |
|
||||
| --- | --- |
|
||||
| Clang | X.Y.Z |
|
||||
| CMake | X.Y.Z |
|
||||
| Linux Kernel | X.Y.Z |
|
||||
| Darling | Git Commit Hash |
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
---
|
||||
name: LKM Bug
|
||||
about: An issue with the Linux kernel module
|
||||
labels: 'bug, linux kernel module'
|
||||
---
|
||||
|
||||
**Expected Result**
|
||||
What did you expect to happen?
|
||||
|
||||
**Actual Result**
|
||||
What did happen?
|
||||
|
||||
**Steps To Reproduce**
|
||||
1. If possible, what steps can you take to reproduce the issue?
|
||||
|
||||
**``dmesg`` Output**
|
||||
Run ```dmesg | grep 'overlay\|darling'```
|
||||
```
|
||||
Put the command output here!
|
||||
```
|
||||
|
||||
**System Information**
|
||||
What system are you using?
|
||||
|
||||
| Software | Version |
|
||||
| --- | --- |
|
||||
| Linux Kernel | X.Y.Z |
|
||||
| Darling | Git Commit Hash |
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
name: Miscellaneous Bug
|
||||
about: A miscellaneous bug in Darling
|
||||
labels: 'bug'
|
||||
---
|
||||
|
||||
**Expected Result**
|
||||
What did you expect to happen?
|
||||
|
||||
**Actual Result**
|
||||
What did happen?
|
||||
|
||||
**Steps To Reproduce**
|
||||
1. If possible, what steps can you take to reproduce the issue?
|
||||
|
||||
**System Information**
|
||||
What system are you using?
|
||||
|
||||
| Software | Version |
|
||||
| --- | --- |
|
||||
| Linux Kernel | X.Y.Z |
|
||||
| Darling | Git Commit Hash |
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
name: Missing Framework
|
||||
about: An application requires a missing framework
|
||||
labels: 'frameworks, application compatibility'
|
||||
---
|
||||
|
||||
**Framework**
|
||||
What framework is required? What does Apple's developer documentation say about it? Is it open-source?
|
||||
|
||||
**Test Application**
|
||||
What application requires this framework?
|
||||
|
||||
**Steps To Reproduce**
|
||||
1. If possible, what steps can you take to reproduce the issue?
|
||||
|
||||
**System Information**
|
||||
What system are you running?
|
||||
|
||||
| Software | Version |
|
||||
| --- | --- |
|
||||
| Darling | Git Commit Hash |
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
name: Missing Library
|
||||
about: An application requires a missing library
|
||||
labels: 'libraries, application compatibility'
|
||||
---
|
||||
|
||||
**Library**
|
||||
What library is required? What does Apple's developer documentation say about it? Is it open-source?
|
||||
|
||||
**Test Application**
|
||||
What application requires this library?
|
||||
|
||||
**Steps To Reproduce**
|
||||
1. If possible, what steps can you take to reproduce the issue?
|
||||
|
||||
**System Information**
|
||||
What system are you running?
|
||||
|
||||
| Software | Version |
|
||||
| --- | --- |
|
||||
| Darling | Git Commit Hash |
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
name: Missing Built-In Tool
|
||||
about: MacOS contains a command-line tool that Darling does not
|
||||
labels: 'enhancement'
|
||||
---
|
||||
|
||||
**Tool**
|
||||
What tool is missing? What is it supposed to do? Is it or a variant open-source?
|
||||
|
||||
**Example Command**
|
||||
What is an example command for this tool?
|
||||
|
||||
**System Information**
|
||||
What system are you running?
|
||||
|
||||
| Software | Version |
|
||||
| --- | --- |
|
||||
| Darling | Git Commit Hash |
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
---
|
||||
name: Startup Bug
|
||||
about: An issue with Darling's startup
|
||||
labels: 'bug, container'
|
||||
---
|
||||
|
||||
**Expected Result**
|
||||
What did you expect to happen?
|
||||
|
||||
**Actual Result**
|
||||
What did happen?
|
||||
|
||||
**Steps To Reproduce**
|
||||
1. If possible, what steps can you take to reproduce the issue?
|
||||
|
||||
**```strace``` Output**
|
||||
Run ```sudo strace -f -u $USER darling shell```, what is the output?
|
||||
```
|
||||
Put the command output here!
|
||||
```
|
||||
|
||||
**``dmesg`` Output**
|
||||
Run ```dmesg | grep 'overlay\|darling'```
|
||||
```
|
||||
Put the command output here!
|
||||
```
|
||||
|
||||
**System Information**
|
||||
What system are you running?
|
||||
|
||||
| Software | Version |
|
||||
| --- | --- |
|
||||
| Linux Kernel | X.Y.Z |
|
||||
| Darling | Git Commit Hash |
|
||||
Loading…
Reference in New Issue