* [PATCH] automation/eclair: Run *-testing jobs only in some branches
@ 2025-12-11 13:34 Nicola Vetrini
2025-12-11 14:27 ` Andrew Cooper
0 siblings, 1 reply; 3+ messages in thread
From: Nicola Vetrini @ 2025-12-11 13:34 UTC (permalink / raw)
To: xen-devel
Cc: Nicola Vetrini, Doug Goldstein, Stefano Stabellini, Andrew Cooper,
Jan Beulich
From: Nicola Vetrini <nicola.vetrini@bugseng.com>
These jobs should not run in regular scans, but only in xen-project/people
repositories and branches to speed up pipeline execution.
Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com>
---
This should alleviate some of the recent delays of the ECLAIR pipelines
---
automation/gitlab-ci/analyze.yaml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/automation/gitlab-ci/analyze.yaml b/automation/gitlab-ci/analyze.yaml
index 5ddfe37903..88bc42f5c3 100644
--- a/automation/gitlab-ci/analyze.yaml
+++ b/automation/gitlab-ci/analyze.yaml
@@ -52,6 +52,8 @@ eclair-x86_64-testing:
tags:
- eclair-analysis-testing
rules:
+ - if: $CI_PROJECT_PATH !~ /^xen-project\/people/.*$/
+ when: never
- if: $ECLAIR_TESTING
when: always
- !reference [.eclair-analysis:triggered, rules]
@@ -110,6 +112,8 @@ eclair-ARM64-testing:
tags:
- eclair-analysis-testing
rules:
+ - if: $CI_PROJECT_PATH !~ /^xen-project\/people/.*$/
+ when: never
- if: $ECLAIR_TESTING
when: always
- !reference [.eclair-analysis:triggered, rules]
--
2.52.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] automation/eclair: Run *-testing jobs only in some branches
2025-12-11 13:34 [PATCH] automation/eclair: Run *-testing jobs only in some branches Nicola Vetrini
@ 2025-12-11 14:27 ` Andrew Cooper
2025-12-11 15:18 ` Nicola Vetrini
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Cooper @ 2025-12-11 14:27 UTC (permalink / raw)
To: Nicola Vetrini, xen-devel
Cc: Andrew Cooper, Nicola Vetrini, Doug Goldstein, Stefano Stabellini,
Jan Beulich
On 11/12/2025 1:34 pm, Nicola Vetrini wrote:
> From: Nicola Vetrini <nicola.vetrini@bugseng.com>
>
> These jobs should not run in regular scans, but only in xen-project/people
> repositories and branches to speed up pipeline execution.
>
> Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com>
> ---
> This should alleviate some of the recent delays of the ECLAIR pipelines
> ---
> automation/gitlab-ci/analyze.yaml | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/automation/gitlab-ci/analyze.yaml b/automation/gitlab-ci/analyze.yaml
> index 5ddfe37903..88bc42f5c3 100644
> --- a/automation/gitlab-ci/analyze.yaml
> +++ b/automation/gitlab-ci/analyze.yaml
> @@ -52,6 +52,8 @@ eclair-x86_64-testing:
> tags:
> - eclair-analysis-testing
> rules:
> + - if: $CI_PROJECT_PATH !~ /^xen-project\/people/.*$/
> + when: never
> - if: $ECLAIR_TESTING
> when: always
> - !reference [.eclair-analysis:triggered, rules]
> @@ -110,6 +112,8 @@ eclair-ARM64-testing:
> tags:
> - eclair-analysis-testing
> rules:
> + - if: $CI_PROJECT_PATH !~ /^xen-project\/people/.*$/
> + when: never
> - if: $ECLAIR_TESTING
> when: always
> - !reference [.eclair-analysis:triggered, rules]
Thanks for the patch, but Gitlab thinks there's a syntax error.
https://gitlab.com/xen-project/hardware/xen-staging/-/pipelines/2209479095
The / after people needs escaping, like it's done elsewhere. The result is:
https://gitlab.com/xen-project/hardware/xen-staging/-/pipelines/2209482948
which is looking far more healthy.
With that fixed, Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
and I'll be taking this fairly promptly.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] automation/eclair: Run *-testing jobs only in some branches
2025-12-11 14:27 ` Andrew Cooper
@ 2025-12-11 15:18 ` Nicola Vetrini
0 siblings, 0 replies; 3+ messages in thread
From: Nicola Vetrini @ 2025-12-11 15:18 UTC (permalink / raw)
To: Andrew Cooper
Cc: Nicola Vetrini, xen-devel, Doug Goldstein, Stefano Stabellini,
Jan Beulich
On 2025-12-11 15:27, Andrew Cooper wrote:
> On 11/12/2025 1:34 pm, Nicola Vetrini wrote:
>> From: Nicola Vetrini <nicola.vetrini@bugseng.com>
>>
>> These jobs should not run in regular scans, but only in
>> xen-project/people
>> repositories and branches to speed up pipeline execution.
>>
>> Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com>
>> ---
>> This should alleviate some of the recent delays of the ECLAIR
>> pipelines
>> ---
>> automation/gitlab-ci/analyze.yaml | 4 ++++
>> 1 file changed, 4 insertions(+)
>>
>> diff --git a/automation/gitlab-ci/analyze.yaml
>> b/automation/gitlab-ci/analyze.yaml
>> index 5ddfe37903..88bc42f5c3 100644
>> --- a/automation/gitlab-ci/analyze.yaml
>> +++ b/automation/gitlab-ci/analyze.yaml
>> @@ -52,6 +52,8 @@ eclair-x86_64-testing:
>> tags:
>> - eclair-analysis-testing
>> rules:
>> + - if: $CI_PROJECT_PATH !~ /^xen-project\/people/.*$/
>> + when: never
>> - if: $ECLAIR_TESTING
>> when: always
>> - !reference [.eclair-analysis:triggered, rules]
>> @@ -110,6 +112,8 @@ eclair-ARM64-testing:
>> tags:
>> - eclair-analysis-testing
>> rules:
>> + - if: $CI_PROJECT_PATH !~ /^xen-project\/people/.*$/
>> + when: never
>> - if: $ECLAIR_TESTING
>> when: always
>> - !reference [.eclair-analysis:triggered, rules]
>
> Thanks for the patch, but Gitlab thinks there's a syntax error.
>
> https://gitlab.com/xen-project/hardware/xen-staging/-/pipelines/2209479095
>
> The / after people needs escaping, like it's done elsewhere. The
> result is:
>
> https://gitlab.com/xen-project/hardware/xen-staging/-/pipelines/2209482948
>
> which is looking far more healthy.
>
> With that fixed, Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
> and I'll be taking this fairly promptly.
Ah, right. Should have done a test run. Thanks for the fix
--
Nicola Vetrini, B.Sc.
Software Engineer
BUGSENG (https://bugseng.com)
LinkedIn: https://www.linkedin.com/in/nicola-vetrini-a42471253
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-12-11 15:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-11 13:34 [PATCH] automation/eclair: Run *-testing jobs only in some branches Nicola Vetrini
2025-12-11 14:27 ` Andrew Cooper
2025-12-11 15:18 ` Nicola Vetrini
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.