1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-04-27 04:25:13 +02:00

Drop colored gcov output on Linux.

It isn't supported on the older gcc versions used by CI/CD.
This commit is contained in:
bwoodsend 2021-03-30 23:26:49 +01:00
parent 47b84384c5
commit 25dad7eae1

View File

@ -10,7 +10,7 @@
# The exact arguments depend on whether we're using LLVM's gcov or GNU's.
unameOut="$(uname -s)"
case "${unameOut}" in
Linux*) gcov_options=(--relative-only -k);;
Linux*) gcov_options=(--relative-only);;
Darwin*) gcov_options=(--color);;
*) echo "Unsupported OS ${unameOut}"; exit 1;;
esac