ci: fix codecov script

The script is doing a find with -execdir (not on busybox's find btw…) ,
this made it not finding the source code.

Add -Z so that build fails if codecov script fails
This commit is contained in:
Boris Faure 2019-01-12 17:29:16 +01:00
parent 9b9e50a6b1
commit bf3d3991cd
2 changed files with 6 additions and 2 deletions

View File

@ -57,7 +57,10 @@ jobs:
rm -fr *@@tyfuzz@exe *@@tyls@exe *@@typop@exe *@@tyq@exe
rm -fr *@@tysend@exe
cd /terminology/build/
bash <(curl -s https://codecov.io/bash)
curl -s https://codecov.io/bash > .codecov
chmod +x .codecov
sed -i.bak 's/execdir/exec/' .codecov
./.codecov -Z
build_clang:
docker:
- image: borisfaure/terminology-ci:latest

View File

@ -1,2 +1,3 @@
fixes:
- "../src/bin/::src/bin/"
- "../::"
- "/terminology/::"