mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
49de4ed28b
build: upgrades build pipeline from CircleCI 1.0 -> 2.0
20 lines
406 B
Bash
Executable File
20 lines
406 B
Bash
Executable File
#!/bin/bash
|
|
function exit_if_fail {
|
|
command=$@
|
|
echo "Executing '$command'"
|
|
eval $command
|
|
rc=$?
|
|
if [ $rc -ne 0 ]; then
|
|
echo "'$command' returned $rc."
|
|
exit $rc
|
|
fi
|
|
}
|
|
|
|
exit_if_fail npm run test:coverage
|
|
exit_if_fail npm run build
|
|
|
|
# publish code coverage
|
|
echo "Publishing javascript code coverage"
|
|
bash <(curl -s https://codecov.io/bash) -cF javascript
|
|
rm -rf coverage
|