Skip to content

Commit

Permalink
Introduce new issue template for native executable bugs
Browse files Browse the repository at this point in the history
The aim of this is to prompt the reported to make sure the issue is
native-image specific and also remove the GraalVM field from issue
reports not using GraalVM.
  • Loading branch information
zakkak committed Oct 16, 2023
1 parent 2a2e719 commit 494f483
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ body:
id: java_version
attributes:
label: Output of `java -version`
- type: input
id: graalvm_version
attributes:
label: GraalVM version (if different from Java)
- type: input
id: quarkus_version
attributes:
Expand Down
77 changes: 77 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report_native.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Bug Report for Quarkus native executables
description: Report a bug in Quarkus that only appears when building a native executable
labels: kind/bug
body:
- type: textarea
id: description
validations:
required: true
attributes:
label: Describe the bug
description: >-
Describe the issue you are experiencing here to communicate to the
maintainers. Tell us what you were trying to do and what happened.
Make sure the issue is not reproducible in JVM mode. If the
issue is reproducible in JVM mode please open a "Bug Report for
Quarkus".
Provide a clear and concise description of what the problem is.
- type: textarea
id: expected_behavior
attributes:
label: Expected behavior
description: >-
Describe the expected behavior clearly and concisely.
- type: textarea
id: actual_behavior
attributes:
label: Actual behavior
description: >-
Describe the actual behavior clearly and concisely.
- type: textarea
id: how_to_reproduce
attributes:
label: How to Reproduce?
description: >-
Link to a small reproducer (preferably a Maven project if the issue is not Gradle-specific) or attach an archive containing the reproducer to the issue.
placeholder: |
Reproducer:
Steps to reproduce the behavior:
1.
2.
3.
- type: markdown
id: environment
attributes:
value: |
## Environment
- type: input
id: uname
attributes:
label: Output of `uname -a` or `ver`
- type: input
id: java_version
attributes:
label: Output of `java -version`
- type: input
id: graalvm_version
attributes:
label: Mandrel or GraalVM version (if different from Java)
- type: input
id: quarkus_version
attributes:
label: Quarkus version or git rev
- type: input
id: build_tool
attributes:
label: Build tool (ie. output of `mvnw --version` or `gradlew --version`)
- type: textarea
id: additional_info
attributes:
label: Additional information
description: >
If you have any additional information for us, use the field below.
Please note, you can attach screenshots or screen recordings here, by
dragging and dropping files in the field below.

0 comments on commit 494f483

Please sign in to comment.