[PATCH] gitlab: add missing job inheritance for codestyle

Daniel P. Berrangé posted 1 patch 4 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/20240617090357.1540443-1-berrange@redhat.com
.gitlab-ci.yml | 1 +
1 file changed, 1 insertion(+)
[PATCH] gitlab: add missing job inheritance for codestyle
Posted by Daniel P. Berrangé 4 months ago
The previous fix:

  commit b069efe29c950d1a45e88ef7dc924d3ee223103a
  Author: Daniel P. Berrangé <berrange@redhat.com>
  Date:   Fri Jun 14 19:57:06 2024 +0100

    gitlab: fix codestyle CI job

was incomplete, as the job inheritance was also
broken.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
 .gitlab-ci.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 635e731f82..6de867e1f2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -106,6 +106,7 @@ pages:
 
 codestyle_job:
   stage: sanity_checks
+  extends: .gitlab_native_build_job
   needs:
     - job: x86_64-opensuse-leap-15-container
       optional: true
-- 
2.45.1
Re: [PATCH] gitlab: add missing job inheritance for codestyle
Posted by Ján Tomko 4 months ago
On a Monday in 2024, Daniel P. Berrangé wrote:
>The previous fix:
>
>  commit b069efe29c950d1a45e88ef7dc924d3ee223103a
>  Author: Daniel P. Berrangé <berrange@redhat.com>
>  Date:   Fri Jun 14 19:57:06 2024 +0100
>
>    gitlab: fix codestyle CI job
>
>was incomplete, as the job inheritance was also
>broken.
>
>Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
>---
> .gitlab-ci.yml | 1 +
> 1 file changed, 1 insertion(+)
>

Reviewed-by: Ján Tomko <jtomko@redhat.com>

Jano