cva6/.gitlab-ci/scripts/report_pass.py
2023-09-07 11:38:34 +02:00

17 lines
597 B
Python

# Copyright 2022 Thales Silicon Security
#
# Licensed under the Solderpad Hardware Licence, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# SPDX-License-Identifier: Apache-2.0 WITH SHL-2.0
# You may obtain a copy of the License at https://solderpad.org/licenses/
#
# Original Author: Yannick Casamatta (yannick.casamatta@thalesgroup.com)
import report_builder as rb
metric = rb.TableStatusMetric('')
metric.add_pass('Job completed without error. No metric extraction is configured')
report = rb.Report()
report.add_metric(metric)
report.dump()