[U-Boot] [PATCH] travis.yml: Add in uniphier as a job, modify aarch64 builds a bit

- Add in system aarch64-linux-gnu toolchain - Now that all VMs will have aarch64 available, don't exclude them from other jobs but instead exclude them from the catch-all aarch64 build - Add JOB= to the Freescale/ARM build to be clear about what it does. - Add uniphier as a stand-alone job
Signed-off-by: Tom Rini trini@konsulko.com --- .travis.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/.travis.yml b/.travis.yml index cda2d979ee4a..bb9325bacc33 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,6 +27,7 @@ addons: - qemu-system-x86 - gcc-powerpc-linux-gnu - gcc-arm-linux-gnueabihf + - gcc-aarch64-linux-gnu - iasl
install: @@ -54,7 +55,6 @@ env:
before_script: # install toolchains based on TOOLCHAIN} variable - - if [[ "${TOOLCHAIN}" == *aarch64* ]]; then ./tools/buildman/buildman --fetch-arch aarch64 ; fi - if [[ "${TOOLCHAIN}" == *avr32* ]]; then ./tools/buildman/buildman --fetch-arch avr32 ; fi - if [[ "${TOOLCHAIN}" == *bfin* ]]; then ./tools/buildman/buildman --fetch-arch bfin ; fi - if [[ "${TOOLCHAIN}" == *m68k* ]]; then ./tools/buildman/buildman --fetch-arch m68k ; fi @@ -113,7 +113,8 @@ matrix: - env: - BUILDMAN="denx" - env: - - BUILDMAN="freescale -x powerpc,m68k,aarch64" + - JOB="Freescale ARM" + BUILDMAN="freescale -x powerpc,m68k" - env: - BUILDMAN="sandbox x86" TOOLCHAIN="x86_64" @@ -155,11 +156,13 @@ matrix: - env: - BUILDMAN="siemens" - env: - - BUILDMAN="tegra -x aarch64" + - BUILDMAN="tegra" - env: - BUILDMAN="ti" - env: - - BUILDMAN="aarch64" + - BUILDMAN="uniphier" + - env: + - BUILDMAN="aarch64 -x tegra,freescale,uniphier" TOOLCHAIN="aarch64" - env: - BUILDMAN="sh4"

On Sat, Oct 29, 2016 at 05:11:17PM -0400, Tom Rini wrote:
- Add in system aarch64-linux-gnu toolchain
- Now that all VMs will have aarch64 available, don't exclude them from other jobs but instead exclude them from the catch-all aarch64 build
- Add JOB= to the Freescale/ARM build to be clear about what it does.
- Add uniphier as a stand-alone job
Signed-off-by: Tom Rini trini@konsulko.com
Applied to u-boot/master (before v2016.11-rc3), thanks!
participants (1)
-
Tom Rini