-
Notifications
You must be signed in to change notification settings - Fork 73
Description
Hi there,
I have a weird issue when running coveralls-cpp on github actions.
It seems that coveralls.io is not updating the list of files correctly. On coveralls.io it sometimes shows me those files

While on github the src folder was renamed to impl.
I call it from github actions via
[... previously installing coveralls-cpp via pip and executing the unit tests with lcov/gcov enabled]
- name: Coveralls
working-directory: ${{github.workspace}}
run: |
coveralls \
-t ${{ secrets.coveralls_token }} \
-e _deps \
-e ext \
-e test/ \
-e impl/game \
-e impl/jamtemplate/sdl \
-e impl/jamtemplate/sfml/keyboard_input_lib.cpp \
-e impl/jamtemplate/sfml/mouse_input_lib.cpp \
--gcov-options '\-lp'
One exampe log with verbose output can be found here, if that helps:
https://github.com/Laguna1989/JamTemplateCpp/runs/3913945339
The respective build on coveralls.io is this one
https://coveralls.io/jobs/88506710
I already tried the "sync repo" button on coveralls.io, but this did not result in any observable change.
Additionally the build number on coveralls does not seem to be updated correctly and I get weird reports for uncovered lines, which do not make sense at all.
Is this an error on my side, having some invalid paths (which are not obvious to me) or is there something bad happening in the github actions / coveralls-cpp / coveralls interaction that I am not aware of?