coverallsapp/github-action

carryforward flag not working for one of my subprojects

liamappelbe opened this issue · 0 comments

We have a mono repo with a bunch of different packages and we've been using the carryforward flag to merge all our coverage data into a single dashboard. The system has been working great. I recently added another package to the repo, but carryforward isn't working for this package, and it's not showing up in the dashboard.

The package that is being ignored is objective_c. Its workflow is here (see the test-mac job). Here's an example build: https://coveralls.io/builds/67337093

Later in the same github actions run, a different package called ffigen generated this build: https://coveralls.io/builds/67337130. Ffigen's workflow is here (see the test-mac job).

Note that objective_c_tests is missing from the Subprojects list of the ffigen build, and if you expand the source tree, pkgs/objective_c/lib/src/ns_data.dart is uncovered, despite being 100% covered in the objective_c build. Seems that coveralls is just dropping the objective_c subproject.

Btw, both those builds were taken from this PR. The workflow logs are here (ObjC) and here (ffigen).

I know this is probably not a coveralls bug, and I'm just doing something wrong, but I'm stumped and not sure how to debug it further. Is there anything obviously wrong in my configs? Is there any way to get more information about what's going on, either from the dashboard or the workflow logs? Any help would be appreciated.

cc dart-lang/native#1108