yocto-autobuilder-helper/scripts/run-abint
Ross Burton cd419db04c Add an AB-INT report
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>
2024-02-09 23:37:52 +00:00

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}/