Re: [PATCH v2 13/23] travis/gitlab/azure: Use --board buildman flag with test.py

2020-03-16 Thread Tom Rini
On Sun, Mar 15, 2020 at 05:42:53PM -0600, Simon Glass wrote: > The current method of selecting the board to build with test.py is a bit > error-prone, e.g. with "^sandbox$" it actually builds 5 boards (all of > those in the sandbox architecture). > > Use the (newish) --board flag instead, to get

[PATCH v2 13/23] travis/gitlab/azure: Use --board buildman flag with test.py

2020-03-15 Thread Simon Glass
The current method of selecting the board to build with test.py is a bit error-prone, e.g. with "^sandbox$" it actually builds 5 boards (all of those in the sandbox architecture). Use the (newish) --board flag instead, to get the same result. Signed-off-by: Simon Glass --- Changes in v2: - Upda