2019-03-12 14:42:36 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2019-03-12 15:08:46 +01:00
|
|
|
echo "Collecting code stats (typescript errors & more)"
|
|
|
|
|
|
2019-03-12 14:42:36 +01:00
|
|
|
ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --noImplicitAny true | grep -oP 'Found \K(\d+)')"
|
|
|
|
|
DIRECTIVES="$(grep -r -o directive public/app/**/* | wc -l)"
|
2019-03-12 15:08:46 +01:00
|
|
|
CONTROLLERS="$(grep -r -oP 'class .*Ctrl' public/app/**/* | wc -l)"
|
2019-03-12 14:42:36 +01:00
|
|
|
|
|
|
|
|
echo "Typescript errors: $ERROR_COUNT"
|
|
|
|
|
echo "Directives: $DIRECTIVES"
|
|
|
|
|
echo "Controllers: $CONTROLLERS"
|
|
|
|
|
|
|
|
|
|
curl \
|
2019-03-12 15:08:46 +01:00
|
|
|
-d "{\"metrics\": {
|
|
|
|
|
\"ci.code.noImplicitAny\": $ERROR_COUNT,
|
|
|
|
|
\"ci.code.directives\": $DIRECTIVES,
|
|
|
|
|
\"ci.code.controllers\": $CONTROLLERS
|
|
|
|
|
}
|
|
|
|
|
}" \
|
|
|
|
|
-H "Content-Type: application/json" \
|
|
|
|
|
-u ci:$CIRCLE_STATS_PWD \
|
|
|
|
|
-X POST https://stats.grafana.org/metric-receiver
|
2019-03-12 14:42:36 +01:00
|
|
|
|