diff mbox series

[v3,02/10] gitlab-ci: Rename acceptance_test_job -> integration_test_job

Message ID 20210519185504.2198573-3-f4bug@amsat.org (mailing list archive)
State New, archived
Headers show
Series gitlab-ci: Ease forks pipeline workflow | expand

Commit Message

Philippe Mathieu-Daudé May 19, 2021, 6:54 p.m. UTC
From: Philippe Mathieu-Daudé <philmd@redhat.com>

The acceptance tests aren't accepting anything,
rename them as integration tests.

Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Acked-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 .gitlab-ci.yml | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

Comments

Willian Rampazzo May 19, 2021, 7:26 p.m. UTC | #1
On Wed, May 19, 2021 at 3:55 PM Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
>
> From: Philippe Mathieu-Daudé <philmd@redhat.com>
>
> The acceptance tests aren't accepting anything,
> rename them as integration tests.

Kind of related, I'm missing a patch changing the name of the
directory from `acceptance` to `integration`, but we can do it later,
when this series is merged.
Philippe Mathieu-Daudé May 19, 2021, 7:38 p.m. UTC | #2
On 5/19/21 9:26 PM, Willian Rampazzo wrote:
> On Wed, May 19, 2021 at 3:55 PM Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
>>
>> From: Philippe Mathieu-Daudé <philmd@redhat.com>
>>
>> The acceptance tests aren't accepting anything,
>> rename them as integration tests.
> 
> Kind of related, I'm missing a patch changing the name of the
> directory from `acceptance` to `integration`, but we can do it later,
> when this series is merged.

This series is focused on GitLab.

Do you mind sending the patch? :)
Willian Rampazzo May 20, 2021, 8:04 p.m. UTC | #3
On Wed, May 19, 2021 at 4:38 PM Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
>
> On 5/19/21 9:26 PM, Willian Rampazzo wrote:
> > On Wed, May 19, 2021 at 3:55 PM Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
> >>
> >> From: Philippe Mathieu-Daudé <philmd@redhat.com>
> >>
> >> The acceptance tests aren't accepting anything,
> >> rename them as integration tests.
> >
> > Kind of related, I'm missing a patch changing the name of the
> > directory from `acceptance` to `integration`, but we can do it later,
> > when this series is merged.
>
> This series is focused on GitLab.
>
> Do you mind sending the patch? :)
>

Not what you were expecting, but at least it is a starting point for
discussions: https://lists.gnu.org/archive/html/qemu-devel/2021-05/msg06553.html
diff mbox series

Patch

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6a36f8299bf..ef9b4804f32 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -52,7 +52,7 @@  include:
     # Avoid recompiling by hiding ninja with NINJA=":"
     - make NINJA=":" $MAKE_CHECK_ARGS
 
-.acceptance_test_job_template:
+.integration_test_job_template:
   extends: .native_test_job_template
   cache:
     key: "${CI_JOB_NAME}-cache"
@@ -109,7 +109,7 @@  check-system-alpine:
     MAKE_CHECK_ARGS: check
 
 acceptance-system-alpine:
-  extends: .acceptance_test_job_template
+  extends: .integration_test_job_template
   needs:
     - job: build-system-alpine
       artifacts: true
@@ -142,7 +142,7 @@  check-system-ubuntu:
     MAKE_CHECK_ARGS: check
 
 acceptance-system-ubuntu:
-  extends: .acceptance_test_job_template
+  extends: .integration_test_job_template
   needs:
     - job: build-system-ubuntu
       artifacts: true
@@ -175,7 +175,7 @@  check-system-debian:
     MAKE_CHECK_ARGS: check
 
 acceptance-system-debian:
-  extends: .acceptance_test_job_template
+  extends: .integration_test_job_template
   needs:
     - job: build-system-debian
       artifacts: true
@@ -209,7 +209,7 @@  check-system-fedora:
     MAKE_CHECK_ARGS: check
 
 acceptance-system-fedora:
-  extends: .acceptance_test_job_template
+  extends: .integration_test_job_template
   needs:
     - job: build-system-fedora
       artifacts: true
@@ -243,7 +243,7 @@  check-system-centos:
     MAKE_CHECK_ARGS: check
 
 acceptance-system-centos:
-  extends: .acceptance_test_job_template
+  extends: .integration_test_job_template
   needs:
     - job: build-system-centos
       artifacts: true
@@ -275,7 +275,7 @@  check-system-opensuse:
     MAKE_CHECK_ARGS: check
 
 acceptance-system-opensuse:
-  extends: .acceptance_test_job_template
+  extends: .integration_test_job_template
   needs:
     - job: build-system-opensuse
       artifacts: true
@@ -516,7 +516,7 @@  check-cfi-aarch64:
     MAKE_CHECK_ARGS: check
 
 acceptance-cfi-aarch64:
-  extends: .acceptance_test_job_template
+  extends: .integration_test_job_template
   needs:
     - job: build-cfi-aarch64
       artifacts: true
@@ -552,7 +552,7 @@  check-cfi-ppc64-s390x:
     MAKE_CHECK_ARGS: check
 
 acceptance-cfi-ppc64-s390x:
-  extends: .acceptance_test_job_template
+  extends: .integration_test_job_template
   needs:
     - job: build-cfi-ppc64-s390x
       artifacts: true
@@ -588,7 +588,7 @@  check-cfi-x86_64:
     MAKE_CHECK_ARGS: check
 
 acceptance-cfi-x86_64:
-  extends: .acceptance_test_job_template
+  extends: .integration_test_job_template
   needs:
     - job: build-cfi-x86_64
       artifacts: true