Re: Is `make -C lib/go check` supposed to go into subdirectories?

2022-10-28 Thread Yuxuan Wang
Oh I think I figured it out. In lib/go/Makefile.am, we only add `test` to SUBDIR if WITH_TEST is defined. In github actions we likely didn't define that so that's not included. On Wed, Oct 12, 2022 at 4:19 PM Yuxuan Wang wrote: > I have to admit I'm not too familiar with gnu make and how is it

Is `make -C lib/go check` supposed to go into subdirectories?

2022-10-12 Thread Yuxuan Wang
I have to admit I'm not too familiar with gnu make and how is it supposed to work. When I run `make -C lib/go check` locally, from the output I see it did `make check` under `lib/go`, and also go into subdirectories to run `make check` under `lib/go/test` automatically. But from our Github