Skip to content

Commit e0da2bc

Browse files
committed
debug
1 parent 21588a7 commit e0da2bc

1 file changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,18 @@ jobs:
8282
run: |
8383
make coverage
8484
85-
- name: Debug coverage outputs
85+
- name: 🔍 Show luacov-lcov reporter output
8686
run: |
87-
echo "Listing files in $(pwd):"
88-
find . -type f
89-
echo "Check for luacov stats:"
90-
find . -name "luacov.stats.out"
91-
echo "Check for lcov.info:"
92-
find . -name "lcov.info"``
87+
echo "Running luacov-lcov manually:"
88+
ls -l luacov.stats.out || echo "No stats file"
89+
luarocks list | grep luacov || echo "luacov not installed?"
90+
luacov -t LcovReporter > lcov.info 2> lcov.stderr.log || echo "luacov failed"
9391
92+
echo "Output file?"
93+
ls -l lcov.info || echo "lcov.info not generated"
94+
95+
echo "stderr from luacov:"
96+
cat lcov.stderr.log
9497
- name: Upload code coverage
9598
uses: codecov/codecov-action@v4
9699
with:

0 commit comments

Comments
 (0)