[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/6] travis: Fix sparc64 test
From: |
Alexander Graf |
Subject: |
[PATCH 2/6] travis: Fix sparc64 test |
Date: |
Sun, 28 Apr 2019 00:55:54 +0200 |
For sparc64, we were not selecting the correct mkimage output type. Just
pick aout at random. Also, make sure the rest of the variable logic can
deal with the 3rd element.
Signed-off-by: Alexander Graf <address@hidden>
---
.travis.yml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 6184a373f..c3e6513f2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -41,7 +41,8 @@ script:
# Build all selected GRUB targets.
- for target in $GRUB_TARGETS; do
plat=${target#*-};
- arch=${target%-*};
+ plat=${plat%-*};
+ arch=${target%%-*};
[ "$arch" = "arm64" ] && arch=aarch64-linux;
[ "$arch" = "arm" ] && arch=arm-linux-gnueabi;
[ "$arch" = "ia64" ] && arch=ia64-linux;
@@ -81,7 +82,7 @@ matrix:
- CROSS_TARGETS="powerpc64-linux"
- name: "sparc64"
env:
- - GRUB_TARGETS="sparc64-ieee1275"
+ - GRUB_TARGETS="sparc64-ieee1275-aout"
- CROSS_TARGETS="sparc64-linux"
- name: "ia64"
env:
--
2.16.4
- [PATCH 0/6] Travis fixes, Alexander Graf, 2019/04/27
- [PATCH 1/6] travis: Run bootstrap instead of autogen.sh, Alexander Graf, 2019/04/27
- [PATCH 5/6] arm coreboot: Use common directory path, Alexander Graf, 2019/04/27
- [PATCH 5/5] travis: Add smoke tests for arm and aarch64, Alexander Graf, 2019/04/27
- [PATCH 4/6] travis: Fix arm coreboot test and make loop more robus, Alexander Graf, 2019/04/27
- [PATCH 2/6] travis: Fix sparc64 test,
Alexander Graf <=
- [PATCH 6/6] travis: Add smoke tests for arm and aarch64, Alexander Graf, 2019/04/27
- [PATCH 3/6] travis: Fix mips QEMU target, Alexander Graf, 2019/04/27