eclair: Remove analyze_index_html.sh, was moved to tf-ci-scripts

For reuse between TF-A/TF-M.

Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
Change-Id: If646a0bc2fd90587b92a6c365b84815250afd5e2
diff --git a/eclair/analyze.sh b/eclair/analyze.sh
index 5438ab9..24440c1 100755
--- a/eclair/analyze.sh
+++ b/eclair/analyze.sh
@@ -83,6 +83,3 @@
 
 # Compress database to take less disk space in Jenkins archive
 xz ${PROJECT_ECD}
-
-
-. ${SCRIPT_DIR}/analyze_index_html.sh
diff --git a/eclair/analyze_index_html.sh b/eclair/analyze_index_html.sh
deleted file mode 100755
index 2d56363..0000000
--- a/eclair/analyze_index_html.sh
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/bash
-#
-# Copyright (c) 2022 Arm Limited. All rights reserved.
-#
-# SPDX-License-Identifier: BSD-3-Clause
-#
-# Template to produce index.html for the "full" build.
-
-cat <<EOF >index.html
-<html>
-<body>
-<h1>MISRA reports</h1>
-
-<p>
-TF-A Config: ${TF_CONFIG}<br />
-CI Build: <a href="${BUILD_URL}">${BUILD_URL}</a>
-</p>
-
-Reports:
-<ul>
-<li><a href='ECLAIR/full_html/by_service.html#service/first_file&kind{"select":true,"selection":{"hiddenAreaKinds":[],"hiddenSubareaKinds":[],"show":true,"selector":{"enabled":true,"negated":false,"kind":1,"children":[{"enabled":true,"negated":false,"kind":0,"domain":"strictness","inputs":[{"enabled":true,"text":"mandatory"}]},{"enabled":true,"negated":false,"kind":0,"domain":"kind","inputs":[{"enabled":true,"text":"violation"}]}]}}}'>Mandatory rules - violations</a>
-<li><a href='ECLAIR/full_html/by_service.html#service/first_file&kind{"select":true,"selection":{"hiddenAreaKinds":[],"hiddenSubareaKinds":[],"show":true,"selector":{"enabled":true,"negated":false,"kind":1,"children":[{"enabled":true,"negated":false,"kind":0,"domain":"strictness","inputs":[{"enabled":true,"text":"mandatory"}]},{"enabled":true,"negated":false,"kind":0,"domain":"kind","inputs":[{"enabled":true,"text":"violation"},{"enabled":true,"text":"caution"}]}]}}}'>Mandatory rules - violations & cautions</a>
-<li><a href='ECLAIR/full_html/by_service.html#strictness/service/first_file&strictness{"select":true,"selection":{"hiddenAreaKinds":[],"hiddenSubareaKinds":[],"show":true,"selector":{"enabled":true,"negated":false,"kind":2,"children":[{"enabled":true,"negated":false,"kind":0,"domain":"kind","inputs":[{"enabled":true,"text":"violation"}]}]}}}'>Report by issue strictness (Mandatory/Required/Advisory) (violations)</a>
-<li><a href='ECLAIR/full_html/by_service.html#strictness/service/first_file&strictness'>Report by issue strictness (Mandatory/Required/Advisory) (all)</a>
-</ul>
-
-<ul>
-<li><a href="ECLAIR/full_html/index.html">Default ECLAIR report</a>
-<li><a href="ECLAIR/full_txt/">Default ECLAIR report (plain text)</a>
-</ul>
-
-<span style="font-size: 75%">
-<p>
-ECLAIR terminology cheatsheet:
-</p>
-<ul>
-<li>"violation" is formally proven issue
-<li>"caution" is <i>not</i> formally proven issue, may be a false positive
-<li>"information" is <i>not an issue</i> (from MISRA rules PoV), just FYI aka "know your codebase better"
-</ul>
-</span>
-
-</body>
-</html>
-EOF