2019-03-13 04:10:26 -05:00
|
|
|
#!/bin/bash
|
2020-09-07 11:39:47 -05:00
|
|
|
set -e
|
2019-03-13 04:10:26 -05:00
|
|
|
|
|
|
|
echo -e "Collecting code stats (typescript errors & more)"
|
|
|
|
|
2020-09-07 06:17:03 -05:00
|
|
|
ERROR_COUNT_LIMIT=580
|
2019-05-06 00:08:24 -05:00
|
|
|
DIRECTIVES_LIMIT=172
|
|
|
|
CONTROLLERS_LIMIT=139
|
2019-03-29 09:32:58 -05:00
|
|
|
|
2020-09-07 06:17:03 -05:00
|
|
|
ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --strict 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)"
|
|
|
|
STORIES_COUNT="$(find ./packages/grafana-ui/src/components -name "*.story.tsx" | wc -l)"
|
|
|
|
MDX_COUNT="$(find ./packages/grafana-ui/src/components -name "*.mdx" | wc -l)"
|
|
|
|
LEGACY_FORMS="$(grep -r -oP 'LegacyForms;' public/app | wc -l)"
|
2019-03-13 04:10:26 -05:00
|
|
|
|
2019-07-23 05:12:33 -05:00
|
|
|
if [ "$ERROR_COUNT" -gt $ERROR_COUNT_LIMIT ]; then
|
2019-08-05 02:19:31 -05:00
|
|
|
echo -e "Typescript strict errors $ERROR_COUNT exceeded $ERROR_COUNT_LIMIT so failing build"
|
2019-07-23 05:12:33 -05:00
|
|
|
exit 1
|
2019-03-29 09:32:58 -05:00
|
|
|
fi
|
2019-03-13 04:10:26 -05:00
|
|
|
|
2019-07-23 05:12:33 -05:00
|
|
|
if [ "$DIRECTIVES" -gt $DIRECTIVES_LIMIT ]; then
|
2019-03-30 00:21:24 -05:00
|
|
|
echo -e "Directive count $DIRECTIVES exceeded $DIRECTIVES_LIMIT so failing build"
|
2019-07-23 05:12:33 -05:00
|
|
|
exit 1
|
2019-03-29 09:32:58 -05:00
|
|
|
fi
|
2019-03-13 04:10:26 -05:00
|
|
|
|
2019-07-23 05:12:33 -05:00
|
|
|
if [ "$CONTROLLERS" -gt $CONTROLLERS_LIMIT ]; then
|
2019-03-29 09:32:58 -05:00
|
|
|
echo -e "Controllers count $CONTROLLERS exceeded $CONTROLLERS_LIMIT so failing build"
|
2019-07-23 05:12:33 -05:00
|
|
|
exit 1
|
2019-03-29 09:32:58 -05:00
|
|
|
fi
|
2019-03-13 04:10:26 -05:00
|
|
|
|
2019-03-29 09:32:58 -05:00
|
|
|
echo -e "Typescript errors: $ERROR_COUNT"
|
|
|
|
echo -e "Directives: $DIRECTIVES"
|
|
|
|
echo -e "Controllers: $CONTROLLERS"
|
2020-03-18 02:22:46 -05:00
|
|
|
echo -e "Stories: $STORIES_COUNT"
|
|
|
|
echo -e "Documented stories: $MDX_COUNT"
|
2020-04-02 09:18:06 -05:00
|
|
|
echo -e "Legacy forms: $LEGACY_FORMS"
|
2019-03-13 04:10:26 -05:00
|
|
|
|
2020-09-07 06:17:03 -05:00
|
|
|
echo "Metrics: {
|
|
|
|
\"grafana.ci-code.strictErrors\": \"${ERROR_COUNT}\",
|
|
|
|
\"grafana.ci-code.directives\": \"${DIRECTIVES}\",
|
|
|
|
\"grafana.ci-code.controllers\": \"${CONTROLLERS}\",
|
|
|
|
\"grafana.ci-code.grafana-ui.stories\": \"${STORIES_COUNT}\",
|
|
|
|
\"grafana.ci-code.grafana-ui.mdx\": \"${MDX_COUNT}\",
|
|
|
|
\"grafana.ci-code.legacyForms\": \"${LEGACY_FORMS}\"
|
|
|
|
}"
|