mirror of
git://git.yoctoproject.org/yocto-autobuilder-helper.git
synced 2025-07-19 20:59:02 +02:00

This report visualises the AB-INT bugs over time, to help find trends such as bugs which are no longer occuring, or bugs which should be fixed urgently. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
382 B
Bash
Executable File
24 lines
382 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e -u
|
|
|
|
OURDIR=$(dirname $0)
|
|
RESULTSDIR=$1
|
|
|
|
cd $OURDIR/abint
|
|
|
|
echo Building venv...
|
|
|
|
python3 -m venv venv
|
|
source venv/bin/activate
|
|
python3 -m pip --disable-pip-version-check install --requirement requirements.txt
|
|
|
|
echo Generating report...
|
|
|
|
./abint.py
|
|
|
|
echo Publishing report to ${RESULTSDIR}
|
|
|
|
mkdir --parents ${RESULTSDIR}/
|
|
cp --verbose *.html *.js ${RESULTSDIR}/
|