[U-Boot] [PATCH] travis-ci: fix at91 missing boards

From: Eugen Hristev eugen.hristev@microchip.com
Fix missing at91 boards and split the at91 in two categories: at91 arm v7 at91 arm926esj which are the two main cores for the at91 architecture.
Signed-off-by: Eugen Hristev eugen.hristev@microchip.com --- Hello,
I am not very good with Travis, I added this because buildman atmel has lesser total boards than buildman at91. buildman at91 has 78 boards so I split into two tasks, to avoid hitting the 50minutes limit on travis build. Here is a link to travis with this patch applied:
https://travis-ci.org/ehristev/u-boot/builds/511575257
Thanks
.travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/.travis.yml b/.travis.yml index 834502f..6179689 100644 --- a/.travis.yml +++ b/.travis.yml @@ -167,9 +167,12 @@ matrix: env: - JOB="arm926ejs" BUILDMAN="arm926ejs -x freescale,siemens,atmel,kirkwood,spear,omap" - - name: "buildman atmel" + - name: "buildman at91 (non arm v7)" env: - - BUILDMAN="atmel" + - BUILDMAN="at91 -x armv7" + - name: "buildman at91 (non arm926ejs)" + env: + - BUILDMAN="at91 -x arm926ejs" - name: "buildman boundary engicam toradex" env: - BUILDMAN="boundary engicam toradex"

On Thu, Mar 28, 2019 at 10:12:31AM +0000, Eugen.Hristev@microchip.com wrote:
From: Eugen Hristev eugen.hristev@microchip.com
Fix missing at91 boards and split the at91 in two categories: at91 arm v7 at91 arm926esj which are the two main cores for the at91 architecture.
Signed-off-by: Eugen Hristev eugen.hristev@microchip.com
Hello,
I am not very good with Travis, I added this because buildman atmel has lesser total boards than buildman at91. buildman at91 has 78 boards so I split into two tasks, to avoid hitting the 50minutes limit on travis build. Here is a link to travis with this patch applied:
It's a little confusing / annoying when we have to break things down, agreed. I think this is mostly right but can you also please change the jobs which reference atmel in excluding things to exclude at91 instead as well? Thanks!
participants (2)
-
Eugen.Hristev@microchip.com
-
Tom Rini