blob: 8a25f835ee2b4f5deb1cf07094375eb0184bbdd9 [file] [log] [blame]
Paul Sokolovsky64e50242022-12-06 19:09:25 +03001#!/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
9cat <<EOF >index.html
10<html>
11<body>
12<h1>MISRA reports</h1>
13
14<p>
15TF-A Config: ${TF_CONFIG}<br />
16CI 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>
24EOF