mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Fix release test pipelines dependencies (#56671)
This commit is contained in:
committed by
GitHub
parent
52965de369
commit
668cb25b82
@@ -1,6 +1,7 @@
|
||||
load(
|
||||
'scripts/drone/steps/lib.star',
|
||||
'identify_runner_step',
|
||||
'download_grabpl_step',
|
||||
'wire_install_step',
|
||||
'test_backend_step',
|
||||
'test_backend_integration_step',
|
||||
@@ -19,7 +20,7 @@ def test_backend(trigger, ver_mode, edition="oss"):
|
||||
environment = {'EDITION': edition}
|
||||
init_steps = []
|
||||
if edition != 'oss':
|
||||
init_steps.extend([clone_enterprise_step(ver_mode), init_enterprise_step(ver_mode),])
|
||||
init_steps.extend([clone_enterprise_step(ver_mode), download_grabpl_step(), init_enterprise_step(ver_mode),])
|
||||
init_steps.extend([
|
||||
identify_runner_step(),
|
||||
compile_build_cmd(edition),
|
||||
|
||||
@@ -26,7 +26,7 @@ def test_frontend(trigger, ver_mode, edition="oss"):
|
||||
])
|
||||
test_steps = [
|
||||
betterer_frontend_step(edition),
|
||||
test_frontend_step(),
|
||||
test_frontend_step(edition),
|
||||
]
|
||||
pipeline_name = '{}-test-frontend'.format(ver_mode)
|
||||
if ver_mode in ("release-branch", "release"):
|
||||
|
||||
@@ -1184,7 +1184,7 @@ def get_windows_steps(edition, ver_mode):
|
||||
|
||||
def verify_gen_cue_step(edition):
|
||||
deps = []
|
||||
if edition == "enterprise":
|
||||
if edition in ('enterprise', 'enterprise2'):
|
||||
deps.extend(['init-enterprise'])
|
||||
return {
|
||||
'name': 'verify-gen-cue',
|
||||
|
||||
Reference in New Issue
Block a user