Chore: split betterer into it's own CI step and allow failures for now (#51543)
* split betterer into it's own CI step and allow failures for now * Run make drone Co-authored-by: dsotirakis <dimitrios.sotirakis@grafana.com>
This commit is contained in:
co-authored by
dsotirakis
parent
76aa4f770e
commit
f654152dc8
@@ -41,7 +41,8 @@ load(
|
||||
'upload_cdn_step',
|
||||
'verify_gen_cue_step',
|
||||
'test_a11y_frontend_step',
|
||||
'trigger_oss'
|
||||
'trigger_oss',
|
||||
'betterer_frontend_step'
|
||||
)
|
||||
|
||||
load(
|
||||
@@ -82,6 +83,7 @@ def main_test_frontend():
|
||||
]
|
||||
test_steps = [
|
||||
lint_frontend_step(),
|
||||
betterer_frontend_step(),
|
||||
test_frontend_step(),
|
||||
]
|
||||
return pipeline(
|
||||
|
||||
@@ -32,6 +32,7 @@ load(
|
||||
'verify_gen_cue_step',
|
||||
'test_a11y_frontend_step',
|
||||
'enterprise_downstream_step',
|
||||
'betterer_frontend_step',
|
||||
)
|
||||
|
||||
load(
|
||||
@@ -79,6 +80,7 @@ def pr_test_frontend():
|
||||
]
|
||||
test_steps = [
|
||||
lint_frontend_step(),
|
||||
betterer_frontend_step(),
|
||||
test_frontend_step(),
|
||||
]
|
||||
return pipeline(
|
||||
|
||||
@@ -539,6 +539,19 @@ def test_backend_integration_step(edition):
|
||||
],
|
||||
}
|
||||
|
||||
def betterer_frontend_step():
|
||||
return {
|
||||
'name': 'betterer-frontend',
|
||||
'image': build_image,
|
||||
'depends_on': [
|
||||
'yarn-install',
|
||||
],
|
||||
'commands': [
|
||||
'yarn betterer ci',
|
||||
],
|
||||
'failure': 'ignore',
|
||||
}
|
||||
|
||||
|
||||
|
||||
def test_frontend_step():
|
||||
|
||||
Reference in New Issue
Block a user