[U-Boot] [PATCH] travis.yml: Split Freescale ARM job up more

In order to avoid running into the time limit, split the 32bit and 64bit Freescale boards into separate jobs. We could either pass "freescale & armv8" to buildman or exclude all of the 32bit CPUs. While the former is shorter I fear the amount of possible escaping required would make things less readable.
Signed-off-by: Tom Rini trini@konsulko.com --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml index ffa3e68c536a..c89ada92969e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -125,9 +125,12 @@ matrix: - env: - BUILDMAN="denx" - env: - - JOB="Freescale ARM" + - JOB="Freescale ARM32" BUILDMAN="freescale -x powerpc,m68k" - env: + - JOB="Freescale AArch64" + BUILDMAN="freescale -x powerpc,m68k,armv7,arm9,arm11" + - env: - JOB="i.MX (non-Freescale)" BUILDMAN="mx -x freescale" - env:

On Wed, Nov 30, 2016 at 02:06:39PM -0500, Tom Rini wrote:
In order to avoid running into the time limit, split the 32bit and 64bit Freescale boards into separate jobs. We could either pass "freescale & armv8" to buildman or exclude all of the 32bit CPUs. While the former is shorter I fear the amount of possible escaping required would make things less readable.
Signed-off-by: Tom Rini trini@konsulko.com
With the thinko of not excluding aarch64 from the 32bit job, applied to u-boot/master, thanks!
participants (1)
-
Tom Rini