
On Fri, Nov 27, 2020 at 10:44:56AM +0100, Andrea Bolognani wrote:
On Fri, 2020-11-27 at 09:46 +0100, Erik Skultety wrote:
+++ b/ci/Makefile -ci-check@%: - $(MAKE) -C $(CI_ROOTDIR) ci-build@$* CI_MAKE_ARGS="check" +ci-test@%: + $(MAKE) -C $(CI_ROOTDIR) ci-build@$* CI_NINJA_ARGS+=test
I don't know why this last bit turned from =test in v3 to +=test in v4, but I don't think it should have. Please change it back.
Deliberate decision...the whole point of ci-test is to test, you may want to add more flags to ninja but still want to test, we don't document anywhere that the flags user sets override our defaults - I've seen user flags to be appended to global env variables in Makefiles so I did the same here. If you want me to change it back without documenting that when user selects a CI target expecting something to happen turning out completely different because they set a certain variable according to the help, I can sure do that (I don't care that much), but it's IMO confusing and this way it's more foolproof. Erik