[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/6] travis: Run bootstrap instead of autogen.sh
From: |
Alexander Graf |
Subject: |
[PATCH 1/6] travis: Run bootstrap instead of autogen.sh |
Date: |
Sun, 28 Apr 2019 00:55:53 +0200 |
Commit 35b909062e7b3 ("gnulib: Upgrade Gnulib and switch to bootstrap tool")
changed the build flow from running ./autogen.sh to running ./bootstrap
but missed to update .travis.yml. Adapt it accordingly.
Fixes: 35b909062e7b3 ("gnulib: Upgrade Gnulib and switch to bootstrap tool")
Signed-off-by: Alexander Graf <address@hidden>
---
.travis.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
index 81de20fa3..6184a373f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,6 +18,7 @@ addons:
- python
- qemu-system
- unifont
+ - gnulib
env:
global:
@@ -35,7 +36,7 @@ before_script:
script:
# Comments must be outside the command strings below, or the Travis parser
# will get confused.
- - ./autogen.sh
+ - ./bootstrap
# Build all selected GRUB targets.
- for target in $GRUB_TARGETS; do
--
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 <=
- [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, 2019/04/27
- [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