diff options
Diffstat (limited to '.github/ISSUE_TEMPLATE/build_error.yml')
-rw-r--r-- | .github/ISSUE_TEMPLATE/build_error.yml | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/.github/ISSUE_TEMPLATE/build_error.yml b/.github/ISSUE_TEMPLATE/build_error.yml index cf5d867ffe..a537b7e634 100644 --- a/.github/ISSUE_TEMPLATE/build_error.yml +++ b/.github/ISSUE_TEMPLATE/build_error.yml @@ -16,19 +16,29 @@ body: attributes: label: Steps to reproduce the issue description: | - Fill in the exact spec you are trying to build and the relevant part of the error message - placeholder: | + Fill in the console output from the exact spec you are trying to build. + value: | ```console - $ spack install <spec> + $ spack spec -I <spec> ... ``` + - type: textarea + id: error + attributes: + label: Error message + description: | + Please post the error message from spack inside the `<details>` tag below: + value: | + <details><summary>Error message</summary><pre> + ... + </pre></details> validations: required: true - type: textarea id: information attributes: label: Information on your system - description: Please include the output of `spack debug report` + description: Please include the output of `spack debug report`. validations: required: true - type: markdown |