Closed huwd closed 4 years ago
Oops, the all-apps
does get rather sidelined.
I think your suggestion to remove it is pragmatic: the only use case for it is the project you're working on at the moment, but that can easily be replicated by manually working through all the projects and running make <project>
for each.
Would you like to raise a PR to remove it?
on it
Steps to reproduce
make all-apps
Stack trace
Issue
We've talked about removing all-apps in the past. It currently tries to build the following list:
So it will try and build generic-ruby-library.
However running
make generic-ruby-library
fails because the makefile there has a set of more specifc rules.Solution
We should remove
all-apps
or ensure that it does not includegeneric-ruby-library
or provide a separate make step to cover everything in that makefile.NB: This also means that the five generic ruby files do not appear in ALL_APPS, if we're trying to test builds that way.