File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -58,16 +58,19 @@ jobs:
58
58
make
59
59
make install DESTDIR=../../kcov-build
60
60
cd ../.. && rm -rf kcov-master master.tar.gz
61
- ls -R ./kcov-build
62
- - name : Upload coverage
61
+ - name : Generate coverage report
63
62
if : ${{ matrix.coverage }}
64
63
run : |
65
64
for file in target/debug/lightning-*; do
66
65
[ -x "${file}" ] || continue;
67
66
mkdir -p "target/cov/$(basename $file)";
68
67
./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file";
69
68
done
70
- bash <(curl -s https://codecov.io/bash)
69
+ - name : Upload coverage
70
+ if : ${{ matrix.coverage }}
71
+ - uses : codecov/codecov-action@v1
72
+ with :
73
+ fail_ci_if_error : true
71
74
72
75
fuzz :
73
76
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments