[PATCH v2 05/12] .shippable: --disable-docs for cross-compile tests

Alex Bennée posted 12 patches 5 years, 9 months ago
Maintainers: Thomas Huth <thuth@redhat.com>, "Alex Bennée" <alex.bennee@linaro.org>, "Philippe Mathieu-Daudé" <philmd@redhat.com>, Fam Zheng <fam@euphon.net>
[PATCH v2 05/12] .shippable: --disable-docs for cross-compile tests
Posted by Alex Bennée 5 years, 9 months ago
The sphinx support is fairly new and we don't seem to have all the
bugs worked out for cross development environments right now.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 .shippable.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.shippable.yml b/.shippable.yml
index 83aae08bb4..2cce7b5689 100644
--- a/.shippable.yml
+++ b/.shippable.yml
@@ -37,5 +37,5 @@ build:
     - unset CC
     - mkdir build
     - cd build
-    - ../configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST}
+    - ../configure --disable-docs ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST}
     - make -j$(($(getconf _NPROCESSORS_ONLN) + 1))
-- 
2.20.1


Re: [PATCH v2 05/12] .shippable: --disable-docs for cross-compile tests
Posted by Philippe Mathieu-Daudé 5 years, 9 months ago
On 1/30/20 12:32 PM, Alex Bennée wrote:
> The sphinx support is fairly new and we don't seem to have all the
> bugs worked out for cross development environments right now.
> 
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
>   .shippable.yml | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/.shippable.yml b/.shippable.yml
> index 83aae08bb4..2cce7b5689 100644
> --- a/.shippable.yml
> +++ b/.shippable.yml
> @@ -37,5 +37,5 @@ build:
>       - unset CC
>       - mkdir build
>       - cd build
> -    - ../configure ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST}
> +    - ../configure --disable-docs ${QEMU_CONFIGURE_OPTS} --target-list=${TARGET_LIST}
>       - make -j$(($(getconf _NPROCESSORS_ONLN) + 1))
> 

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>