mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 01:16:31 -06:00
642c1a16dd
* Apply field overrides in PanelChrome * Move applyFieldOverrides to panel query runner * Review updates * Make sure overrides are applied back on souce panel when exiting the new edit mode * TS ignores in est * Make field display work in viz repeater * Review updates * Review and test updates * Change the way overrides and trransformations are retrieved in PQR * Minor updates after review * Fix null checks
39 lines
1.2 KiB
Bash
Executable File
39 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
echo -e "Collecting code stats (typescript errors & more)"
|
|
|
|
|
|
ERROR_COUNT_LIMIT=821
|
|
DIRECTIVES_LIMIT=172
|
|
CONTROLLERS_LIMIT=139
|
|
|
|
ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --strictNullChecks true | grep -oP 'Found \K(\d+)')"
|
|
DIRECTIVES="$(grep -r -o directive public/app/**/* | wc -l)"
|
|
CONTROLLERS="$(grep -r -oP 'class .*Ctrl' public/app/**/* | wc -l)"
|
|
|
|
if [ "$ERROR_COUNT" -gt $ERROR_COUNT_LIMIT ]; then
|
|
echo -e "Typescript strict errors $ERROR_COUNT exceeded $ERROR_COUNT_LIMIT so failing build"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$DIRECTIVES" -gt $DIRECTIVES_LIMIT ]; then
|
|
echo -e "Directive count $DIRECTIVES exceeded $DIRECTIVES_LIMIT so failing build"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$CONTROLLERS" -gt $CONTROLLERS_LIMIT ]; then
|
|
echo -e "Controllers count $CONTROLLERS exceeded $CONTROLLERS_LIMIT so failing build"
|
|
exit 1
|
|
fi
|
|
|
|
echo -e "Typescript errors: $ERROR_COUNT"
|
|
echo -e "Directives: $DIRECTIVES"
|
|
echo -e "Controllers: $CONTROLLERS"
|
|
|
|
if [ "${CIRCLE_BRANCH}" == "master" ]; then
|
|
./scripts/ci-metrics-publisher.sh \
|
|
grafana.ci-code.strictErrors="$ERROR_COUNT" \
|
|
grafana.ci-code.directives="$DIRECTIVES" \
|
|
grafana.ci-code.controllers="$CONTROLLERS"
|
|
fi
|