mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Updated code stats collection
This commit is contained in:
parent
94677ba874
commit
9f4bca503a
@ -1,16 +1,23 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
echo "Collecting code stats (typescript errors & more)"
|
||||||
|
|
||||||
ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --noImplicitAny true | grep -oP 'Found \K(\d+)')"
|
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)"
|
DIRECTIVES="$(grep -r -o directive public/app/**/* | wc -l)"
|
||||||
CONTROLLERS="${grep -r -oP \"class .*Ctrl\" public/app/**/* | wc -l}"
|
CONTROLLERS="$(grep -r -oP 'class .*Ctrl' public/app/**/* | wc -l)"
|
||||||
|
|
||||||
echo "Typescript errors: $ERROR_COUNT"
|
echo "Typescript errors: $ERROR_COUNT"
|
||||||
echo "Directives: $DIRECTIVES"
|
echo "Directives: $DIRECTIVES"
|
||||||
echo "Controllers: $CONTROLLERS"
|
echo "Controllers: $CONTROLLERS"
|
||||||
|
|
||||||
curl \
|
curl \
|
||||||
-d "{\"metrics\":{\"noImplicitAny\": $ERROR_COUNT}}" \
|
-d "{\"metrics\": {
|
||||||
-H "Content-Type: application/json" \
|
\"ci.code.noImplicitAny\": $ERROR_COUNT,
|
||||||
-u ci:$CIRCLE_STATS \
|
\"ci.code.directives\": $DIRECTIVES,
|
||||||
-X POST https://stats.grafana.org/metric-receiver
|
\"ci.code.controllers\": $CONTROLLERS
|
||||||
|
}
|
||||||
|
}" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-u ci:$CIRCLE_STATS_PWD \
|
||||||
|
-X POST https://stats.grafana.org/metric-receiver
|
||||||
|
|
||||||
|
@ -10,6 +10,11 @@ function exit_if_fail {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
exit_if_fail ./scripts/circle-metrics.sh
|
|
||||||
exit_if_fail npm run prettier:check
|
exit_if_fail npm run prettier:check
|
||||||
exit_if_fail npm run test
|
exit_if_fail npm run test
|
||||||
|
|
||||||
|
# On master also collect some and send some metrics
|
||||||
|
branch="$(git rev-parse --abbrev-ref HEAD)"
|
||||||
|
if [ "${branch}" == "master" ]; then
|
||||||
|
exit_if_fail ./scripts/circle-metrics.sh
|
||||||
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user