diff options
author | Piotr Jaszczyk <piotr.jaszczyk@nokia.com> | 2018-06-29 12:45:19 +0200 |
---|---|---|
committer | Piotr Jaszczyk <piotr.jaszczyk@nokia.com> | 2018-08-02 11:12:58 +0200 |
commit | dc3d4d28ffa9f5b961b3330046d154d4eb5411c3 (patch) | |
tree | 6ee5b6e3a533207987be91df7e2c43cacac5a19e /public | |
parent | 03702b48989174dc8afa855e663a28e34b4da67b (diff) |
Add links to IT results to glpages
Change-Id: I2a2ccc5f826a2d91c75fd8ea81f92df92dcb04d3
Signed-off-by: Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
Issue-ID: DCAEGEN2-601
Diffstat (limited to 'public')
-rw-r--r-- | public/index.html | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html new file mode 100644 index 00000000..ce462752 --- /dev/null +++ b/public/index.html @@ -0,0 +1,64 @@ +<!doctype html> +<html lang="en"> +<head> + <!-- Required meta tags --> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + + <!-- Bootstrap CSS --> + <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" + integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous"> + + <title>VES High Volume collector</title> +</head> +<body> +<div class="container"> + + <div class="jumbotron jumbotron-fluid"> + <div class="container"> + <h1 class="display-4">VES High Volume collector</h1> + <p class="lead">ONAP collector for high volume data, eg. real-time PM</p> + </div> + <div class="container"> + <span class="badge badge-light">Build + <a href="https://gitlabe1.ext.net.nokia.com/onap-wro/ves-hv-collector/pipelines/charts"> + <img alt="pipeline status" + src="https://gitlabe1.ext.net.nokia.com/onap-wro/ves-hv-collector/badges/master/pipeline.svg"/> + </a> + </span> + <span class="badge badge-light">Integration tests + <a href="https://gitlabe1.ext.net.nokia.com/onap-wro/ves-hv-integration/pipelines/charts"> + <img alt="pipeline status" + src="https://gitlabe1.ext.net.nokia.com/onap-wro/ves-hv-integration/badges/master/pipeline.svg"/> + </a> + </span> + + </div> + </div> + + + + <ul> + <li>Repositories + <ul> + <li><a href="https://gitlabe1.ext.net.nokia.com/onap-wro/ves-hv-collector">Implementation</a></li> + <li><a href="https://gitlabe1.ext.net.nokia.com/onap-wro/ves-hv-integration">Integration tests</a> based on ONAP CSIT framework</li> + </ul> + </li> + </li> + <li><a href="https://onap-wro.gitlabe1-pages.ext.net.nokia.com/ves-hv-integration/report.html">Last IT results</a></li> + <li>Static code analysis: + <ul> + <li><a href="./analysis/core/detekt-report.html">Core</a></li> + <li><a href="./analysis/main/detekt-report.html">Main</a></li> + <li><a href="./analysis/utils/detekt-report.html">Utils</a></li> + <li><a href="./analysis/dcae-simulator/detekt-report.html">DCAE APP simulator</a></li> + <li><a href="./analysis/client-simulator/detekt-report.html">xNF simulator</a></li> + </ul> + </li> + <li><a href="./coverage">Coverage</a> (please note that Jacoco support for Kotlin is currently very problematic so the values are invalid) + </ul> +</div> + +</body> +</html> |