mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-06 07:50:30 +01:00
ci/core-manual-rules: enclose the whole condition in quotes
Quoting a condition is apparently an effective way of working around
YAML parsing weirdness. However, the quotes need to surround the whole
expression, not just parts of it.
Fixes: f6c06ef2f6 ("ci: Add manual rules variations to disable.")
Suggested-by: Michel Dänzer <mdaenzer@redhat.com>
Reviewed-by: Eric Engestrom <eric@igalia.com>
Signed-off-by: Martin Roukala (né Peres) <martin.roukala@mupuf.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21036>
This commit is contained in:
parent
5e14792200
commit
0c54f261ea
1 changed files with 3 additions and 3 deletions
|
|
@ -59,9 +59,9 @@
|
|||
# We only want manual jobs to show up when it's not marge's pre-merge CI
|
||||
# run, otherwise she'll wait until her timeout. The exception is
|
||||
# performance jobs, see below.
|
||||
- if: ('$GITLAB_USER_LOGIN == "marge-bot" &&
|
||||
$CI_PIPELINE_SOURCE == "merge_request_event"' &&
|
||||
$CI_JOB_NAME !~ "/performance$/")
|
||||
- if: '($GITLAB_USER_LOGIN == "marge-bot" &&
|
||||
$CI_PIPELINE_SOURCE == "merge_request_event" &&
|
||||
$CI_JOB_NAME !~ "/performance$/")'
|
||||
when: never
|
||||
- !reference [.scheduled_pipeline-rules, rules]
|
||||
- changes:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue