Skip to content

Commit af9fdf8

Browse files
Merge branch 'main' into AddLibraryLoader
2 parents 876169a + 7038fe7 commit af9fdf8

39 files changed

+3371
-730
lines changed

.clang-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ IncludeCategories:
1414
- Regex: '^"llvm/'
1515
Priority: 40
1616
- Regex: '^<'
17-
Priority: 50
17+
Priority: 50
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: Bug Report
2+
description: File a bug report.
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "Thanks for taking the time to fill out this bug report!"
9+
- type: textarea
10+
attributes:
11+
label: "Description of bug"
12+
description: "Tell us what the bug is, and what you result you had expected"
13+
value: "Replace with description of bug."
14+
validations:
15+
required: true
16+
- type: dropdown
17+
attributes:
18+
label: "What operating system was you using when the bug occured?"
19+
multiple: true
20+
options:
21+
- Ubuntu
22+
- MacOS
23+
- Windows
24+
- Other
25+
validations:
26+
required: false
27+
- type: dropdown
28+
attributes:
29+
label: "What is the architechture of the cpu on your system?"
30+
multiple: true
31+
options:
32+
- X86
33+
- ARM
34+
- Other
35+
validations:
36+
required: false
37+
- type: dropdown
38+
attributes:
39+
label: "What did you build CppInterOp against?"
40+
multiple: true
41+
options:
42+
- Clang-repl (LLVM19)
43+
- Clang-repl (LLVM18)
44+
- Clang-repl (LLVM17)
45+
- Clang-repl (LLVM16)
46+
- Cling 1.0
47+
validations:
48+
required: false
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Feature Request Form
2+
description: Form for requesting a new feature in CppInterOp.
3+
title: "[Feature Request]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "Thanks for taking the time to fill out this feature request form!"
9+
- type: textarea
10+
attributes:
11+
label: "Description of new feature"
12+
description: Tell us what the feature is that you would like.
13+
value: "Replace with description of the feature you would like."
14+
validations:
15+
required: true
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Documentation Improvement Form
2+
description: Form for requesting a new feature in CppInterOp.
3+
title: "[Documentation Improvement]: "
4+
labels: ["documentation"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "Thanks for taking the time to fill out this documenation improvement form!"
9+
- type: textarea
10+
attributes:
11+
label: "Description of issue with documention/Way documentation can be improved"
12+
description: Tell use what the issue with the documentation is, or how it could be improved.
13+
value: "Replace text with description of issue with documentation, or improvement that can be made."
14+
validations:
15+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false

.github/pull_request_template.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Description
2+
3+
Please include a summary of changes, motivation and context for this PR.
4+
5+
Fixes # (issue)
6+
7+
## Type of change
8+
9+
Please tick all options which are relevant.
10+
11+
- [ ] Bug fix
12+
- [ ] New feature
13+
- [ ] Requires documentation updates
14+
15+
## Testing
16+
17+
Please describe the test(s) that you added and ran to verify your changes.
18+
19+
## Checklist
20+
21+
- [ ] I have read the contribution guide recently

0 commit comments

Comments
 (0)