All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] gitlab: move linux-user plugins test across to gitlab
@ 2020-10-02 10:32 Alex Bennée
  2020-10-02 10:36 ` Thomas Huth
  2020-10-02 11:16 ` Fam Zheng
  0 siblings, 2 replies; 4+ messages in thread
From: Alex Bennée @ 2020-10-02 10:32 UTC (permalink / raw)
  To: qemu-devel
  Cc: Fam Zheng, Philippe Mathieu-Daudé,
	Thomas Huth, Alex Bennée, Wainer dos Santos Moschetta

Even with the recent split moving beefier plugins into contrib and
dropping them from the check-tcg tests we are still hitting time
limits. This possibly points to a slow down of --debug-tcg but seeing
as we are migrating stuff to gitlab we might as well move there and
bump the timeout.

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

---
v2
  - use timeout instead of split build
---
 .gitlab-ci.yml | 11 +++++++++++
 .travis.yml    | 11 -----------
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c265e7f8ab..346f23acf7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -244,6 +244,17 @@ build-user:
     CONFIGURE_ARGS: --disable-tools --disable-system
     MAKE_CHECK_ARGS: check-tcg
 
+# Run check-tcg against linux-user (with plugins)
+# we skip sparc64-linux-user until it has been fixed somewhat
+# we skip cris-linux-user as it doesn't use the common run loop
+build-user-plugins:
+  <<: *native_build_job_definition
+  variables:
+    IMAGE: debian-all-test-cross
+    CONFIGURE_ARGS: --disable-tools --disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user,cris-linux-user
+    MAKE_CHECK_ARGS: check-tcg
+  timeout: 1h 30m
+
 build-clang:
   <<: *native_build_job_definition
   variables:
diff --git a/.travis.yml b/.travis.yml
index c255c331a7..519e62432d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -311,17 +311,6 @@ jobs:
         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
 
 
-    # Run check-tcg against linux-user (with plugins)
-    # we skip sparc64-linux-user until it has been fixed somewhat
-    # we skip cris-linux-user as it doesn't use the common run loop
-    - name: "GCC plugins check-tcg (user)"
-      env:
-        - CONFIG="--disable-system --enable-plugins --enable-debug-tcg --target-list-exclude=sparc64-linux-user,cris-linux-user"
-        - TEST_BUILD_CMD="make build-tcg"
-        - TEST_CMD="make check-tcg"
-        - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
-
-
     # Run check-tcg against softmmu targets
     - name: "GCC check-tcg (some-softmmu)"
       env:
-- 
2.20.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] gitlab: move linux-user plugins test across to gitlab
  2020-10-02 10:32 [PATCH v2] gitlab: move linux-user plugins test across to gitlab Alex Bennée
@ 2020-10-02 10:36 ` Thomas Huth
  2020-10-02 11:16 ` Fam Zheng
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Huth @ 2020-10-02 10:36 UTC (permalink / raw)
  To: Alex Bennée, qemu-devel
  Cc: Fam Zheng, Philippe Mathieu-Daudé, Wainer dos Santos Moschetta

On 02/10/2020 12.32, Alex Bennée wrote:
> Even with the recent split moving beefier plugins into contrib and
> dropping them from the check-tcg tests we are still hitting time
> limits. This possibly points to a slow down of --debug-tcg but seeing
> as we are migrating stuff to gitlab we might as well move there and
> bump the timeout.
> 
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> 
> ---
> v2
>   - use timeout instead of split build
> ---
>  .gitlab-ci.yml | 11 +++++++++++
>  .travis.yml    | 11 -----------
>  2 files changed, 11 insertions(+), 11 deletions(-)

Reviewed-by: Thomas Huth <thuth@redhat.com>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] gitlab: move linux-user plugins test across to gitlab
  2020-10-02 10:32 [PATCH v2] gitlab: move linux-user plugins test across to gitlab Alex Bennée
  2020-10-02 10:36 ` Thomas Huth
@ 2020-10-02 11:16 ` Fam Zheng
  2020-10-02 12:43   ` Thomas Huth
  1 sibling, 1 reply; 4+ messages in thread
From: Fam Zheng @ 2020-10-02 11:16 UTC (permalink / raw)
  To: Alex Bennée, qemu-devel
  Cc: Thomas Huth, Philippe Mathieu-Daudé, Wainer dos Santos Moschetta

On Fri, 2020-10-02 at 11:32 +0100, Alex Bennée wrote:
> Even with the recent split moving beefier plugins into contrib and
> dropping them from the check-tcg tests we are still hitting time
> limits. This possibly points to a slow down of --debug-tcg but seeing
> as we are migrating stuff to gitlab we might as well move there and
> bump the timeout.
> 
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

Hi Alex,

Unrelated to the patch: do we have custom runners on gitlab? I'm
exploring ideas to run vm based tests there.

Fam



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] gitlab: move linux-user plugins test across to gitlab
  2020-10-02 11:16 ` Fam Zheng
@ 2020-10-02 12:43   ` Thomas Huth
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Huth @ 2020-10-02 12:43 UTC (permalink / raw)
  To: Fam Zheng, Alex Bennée, qemu-devel, Cleber Rosa
  Cc: Philippe Mathieu-Daudé, Wainer dos Santos Moschetta

On 02/10/2020 13.16, Fam Zheng wrote:
> On Fri, 2020-10-02 at 11:32 +0100, Alex Bennée wrote:
>> Even with the recent split moving beefier plugins into contrib and
>> dropping them from the check-tcg tests we are still hitting time
>> limits. This possibly points to a slow down of --debug-tcg but seeing
>> as we are migrating stuff to gitlab we might as well move there and
>> bump the timeout.
>>
>> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> 
> Hi Alex,
> 
> Unrelated to the patch: do we have custom runners on gitlab? I'm
> exploring ideas to run vm based tests there.

Not yet, but Cleber is working on that topic...

 Thomas



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-10-02 12:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-02 10:32 [PATCH v2] gitlab: move linux-user plugins test across to gitlab Alex Bennée
2020-10-02 10:36 ` Thomas Huth
2020-10-02 11:16 ` Fam Zheng
2020-10-02 12:43   ` Thomas Huth

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.