diff options
author | Tom Rini | 2019-10-15 07:27:14 -0400 |
---|---|---|
committer | Tom Rini | 2019-10-16 18:09:26 -0400 |
commit | 95b221543464a4471257d7643b63eabbd6dca8cf (patch) | |
tree | f9ba48fc88680a5eb41cac13fa65b2a60599433a | |
parent | 984c0051a533f420ae2aadecf483d0f94ad925f2 (diff) |
travis: Split sun8i in to two jobs
Split the 32bit and 64bit platforms into separate jobs, to avoid them
taking too long to build overall.
Cc: Jagan Teki <jagan@amarulasolutions.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index dfebb7fd2af..e769fc61fc7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -234,9 +234,12 @@ matrix: - name: "buildman sun7i" env: - BUILDMAN="sun7i" - - name: "buildman sun8i" + - name: "buildman 64bit sun8i" env: - - BUILDMAN="sun8i" + - BUILDMAN="sun8i&aarch64" + - name: "buildman 32bit sun8i" + env: + - BUILDMAN="sun8i&armv7" - name: "buildman sun9i" env: - BUILDMAN="sun9i" |