[Qemu-devel] [PATCH v1 2/8] .travis.yml: split debug builds

Alex Bennée posted 8 patches 6 years, 8 months ago
There is a newer version of this series
[Qemu-devel] [PATCH v1 2/8] .travis.yml: split debug builds
Posted by Alex Bennée 6 years, 8 months ago
The builds are reaching the magic 50 minute limit with regularity so
lets split them up. Rather than doing a full debug build on both just
enable debug tcg for linux-user.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 .travis.yml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 866a1872b1..36ed7ec3f9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -86,7 +86,12 @@ matrix:
 
 
     - env:
-        - CONFIG="--enable-debug --enable-debug-tcg"
+        - CONFIG="--enable-debug --enable-debug-tcg --disable-user"
+
+
+    # TCG debug can be run just on it's own and is mostly agnostic to user/softmmu distinctions
+    - env:
+        - CONFIG="--enable-debug-tcg --disable-system"
 
 
     - env:
-- 
2.20.1


Re: [Qemu-devel] [PATCH v1 2/8] .travis.yml: split debug builds
Posted by Richard Henderson 6 years, 8 months ago
On 2/20/19 9:28 AM, Alex Bennée wrote:
> The builds are reaching the magic 50 minute limit with regularity so
> lets split them up. Rather than doing a full debug build on both just
> enable debug tcg for linux-user.
> 
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
>  .travis.yml | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


r~