diff mbox series

[v2,07/19] travis.yml: single-thread build-tcg stages

Message ID 20200213225109.13120-8-alex.bennee@linaro.org
State Superseded
Headers show
Series testing and plugin updates | expand

Commit Message

Alex Bennée Feb. 13, 2020, 10:50 p.m. UTC
This still seems to be a problem for Travis.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

---
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.20.1

Comments

Philippe Mathieu-Daudé Feb. 14, 2020, 12:15 p.m. UTC | #1
On Thu, Feb 13, 2020 at 11:51 PM Alex Bennée <alex.bennee@linaro.org> wrote:
>

> This still seems to be a problem for Travis.

>

> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

> ---

>  .travis.yml | 4 ++--

>  1 file changed, 2 insertions(+), 2 deletions(-)

>

> diff --git a/.travis.yml b/.travis.yml

> index 0612998958b..f4020dcc6c8 100644

> --- a/.travis.yml

> +++ b/.travis.yml

> @@ -400,7 +400,7 @@ jobs:

>      - name: "GCC check-tcg (some-softmmu)"

>        env:

>          - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"

> -        - TEST_BUILD_CMD="make -j${JOBS} build-tcg"

> +        - TEST_BUILD_CMD="make build-tcg"


Can you explicit -j1 instead? This is self-explanatory.

>          - TEST_CMD="make check-tcg"

>          - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"

>

> @@ -409,7 +409,7 @@ jobs:

>      - name: "GCC plugins check-tcg (some-softmmu)"

>        env:

>          - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"

> -        - TEST_BUILD_CMD="make -j${JOBS} build-tcg"

> +        - TEST_BUILD_CMD="make build-tcg"


With -j1 in both places:
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>


>          - TEST_CMD="make check-tcg"

>          - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"

>

> --

> 2.20.1

>
diff mbox series

Patch

diff --git a/.travis.yml b/.travis.yml
index 0612998958b..f4020dcc6c8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -400,7 +400,7 @@  jobs:
     - name: "GCC check-tcg (some-softmmu)"
       env:
         - CONFIG="--enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
-        - TEST_BUILD_CMD="make -j${JOBS} build-tcg"
+        - TEST_BUILD_CMD="make build-tcg"
         - TEST_CMD="make check-tcg"
         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
 
@@ -409,7 +409,7 @@  jobs:
     - name: "GCC plugins check-tcg (some-softmmu)"
       env:
         - CONFIG="--enable-plugins --enable-debug-tcg --target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
-        - TEST_BUILD_CMD="make -j${JOBS} build-tcg"
+        - TEST_BUILD_CMD="make build-tcg"
         - TEST_CMD="make check-tcg"
         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"