2025-07-15 18:19:08 -07:00
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
2021-04-08 10:13:06 -04:00
|
|
|
. "$DIR/prelude.sh"
|
|
|
|
|
|
2022-05-20 13:19:24 +00:00
|
|
|
set -o pipefail
|
|
|
|
|
|
2021-04-08 10:13:06 -04:00
|
|
|
cd src
|
|
|
|
|
|
|
|
|
|
activate_venv
|
2024-04-11 12:31:36 +03:00
|
|
|
./buildscripts/yamllinters.sh | tee yamllinters.log
|
2022-05-20 13:19:24 +00:00
|
|
|
exit_code=$?
|
|
|
|
|
|
|
|
|
|
$python ./buildscripts/simple_report.py --test-name yamllinters --log-file yamllinters.log --exit-code $exit_code
|
|
|
|
|
exit $exit_code
|