[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v3 06/11] gitlab-ci: Rename acceptance_test_job -> integratio
|
From: |
Willian Rampazzo |
|
Subject: |
Re: [PATCH v3 06/11] gitlab-ci: Rename acceptance_test_job -> integration_test_job |
|
Date: |
Mon, 23 Nov 2020 12:36:47 -0300 |
On Sun, Nov 8, 2020 at 7:27 PM Philippe Mathieu-Daudé <philmd@redhat.com> wrote:
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
> .gitlab-ci.yml | 18 +++++++++---------
> 1 file changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index 0ef814764a0..d4526323169 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -42,7 +42,7 @@ include:
> - find . -type f -exec touch {} +
> - make $MAKE_CHECK_ARGS
>
> -.acceptance_test_job:
> +.integration_test_job:
> extends: .native_test_job
> cache:
> key: "${CI_JOB_NAME}-cache"
> @@ -89,8 +89,8 @@ check-system-ubuntu:
> IMAGE: ubuntu2004
> MAKE_CHECK_ARGS: check
>
> -acceptance-system-ubuntu:
> - extends: .acceptance_test_job
> +integration-system-ubuntu:
> + extends: .integration_test_job
> needs:
> - job: build-system-ubuntu
> artifacts: true
> @@ -119,8 +119,8 @@ check-system-debian:
> IMAGE: debian-amd64
> MAKE_CHECK_ARGS: check
>
> -acceptance-system-debian:
> - extends: .acceptance_test_job
> +integration-system-debian:
> + extends: .integration_test_job
> needs:
> - job: build-system-debian
> artifacts: true
> @@ -150,8 +150,8 @@ check-system-fedora:
> IMAGE: fedora
> MAKE_CHECK_ARGS: check
>
> -acceptance-system-fedora:
> - extends: .acceptance_test_job
> +integration-system-fedora:
> + extends: .integration_test_job
> needs:
> - job: build-system-fedora
> artifacts: true
> @@ -181,8 +181,8 @@ check-system-centos:
> IMAGE: centos8
> MAKE_CHECK_ARGS: check
>
> -acceptance-system-centos:
> - extends: .acceptance_test_job
> +integration-system-centos:
> + extends: .integration_test_job
> needs:
> - job: build-system-centos
> artifacts: true
> --
> 2.26.2
>
>
Makes sense, thanks!
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
- Re: [PATCH v3 03/11] gitlab-ci: Replace YAML anchors by extends (native_build_job), (continued)
- Re: [PATCH v3 06/11] gitlab-ci: Rename acceptance_test_job -> integration_test_job,
Willian Rampazzo <=
[PATCH v3 07/11] gitlab-ci: Extract common job definition as 'cross_common_job', Philippe Mathieu-Daudé, 2020/11/08
[PATCH v3 08/11] gitlab-ci: Extract common job definition as 'native_common_job', Philippe Mathieu-Daudé, 2020/11/08
[PATCH v3 09/11] gitlab-ci: Add rules to select cross-jobs to build, Philippe Mathieu-Daudé, 2020/11/08
[PATCH v3 10/11] gitlab-ci: Add rules to select building/testing native jobs, Philippe Mathieu-Daudé, 2020/11/08
[PATCH v3 11/11] gitlab-ci: Move artifacts expiry rule to common 'native_build_job', Philippe Mathieu-Daudé, 2020/11/08