[PATCH] gitlab: fix codestyle CI job

Daniel P. Berrangé posted 1 patch 2 months, 3 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/20240614191153.1482561-1-berrange@redhat.com
.gitlab-ci.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] gitlab: fix codestyle CI job
Posted by Daniel P. Berrangé 2 months, 3 weeks ago
Jobs whose names start with a '.' as treated as templates, so
not actually run in a pipeline.

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d9d8b1e3cd..635e731f82 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -104,7 +104,7 @@ pages:
     paths:
       - public
 
-.codestyle_job:
+codestyle_job:
   stage: sanity_checks
   needs:
     - job: x86_64-opensuse-leap-15-container
-- 
2.45.1
Re: [PATCH] gitlab: fix codestyle CI job
Posted by Pavel Hrdina 2 months, 3 weeks ago
On Fri, Jun 14, 2024 at 08:11:53PM +0100, Daniel P. Berrangé wrote:
> Jobs whose names start with a '.' as treated as templates, so
> not actually run in a pipeline.
> 
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> ---
>  .gitlab-ci.yml | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Pavel Hrdina <phrdina@redhat.com>