Paul Sokolovsky | 64e5024 | 2022-12-06 19:09:25 +0300 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Copyright (c) 2022 Arm Limited. All rights reserved. |
| 4 | # |
| 5 | # SPDX-License-Identifier: BSD-3-Clause |
| 6 | # |
| 7 | # Template to produce index.html for the "full" build. |
| 8 | |
| 9 | cat <<EOF >index.html |
| 10 | <html> |
| 11 | <body> |
| 12 | <h1>MISRA reports</h1> |
| 13 | |
| 14 | <p> |
| 15 | TF-A Config: ${TF_CONFIG}<br /> |
| 16 | CI Build: <a href="${BUILD_URL}">${BUILD_URL}</a> |
| 17 | </p> |
| 18 | |
| 19 | <li><a href="ECLAIR/full_txt/">Full TXT report</a> |
| 20 | <li><a href="ECLAIR/full_html/index.html">Full HTML report</a> |
| 21 | <li><a href="ECLAIR/full_html/by_service.html#strictness/service/first_file&strictness">Report by issue strictness (Mandatory/Required/Advisory) (HTML).</a> |
| 22 | </body> |
| 23 | </html> |
| 24 | EOF |