mirror of https://github.com/grafana/grafana
Run enterprise downstream after OSS CI is done (#55366)
parent
f058e1eae3
commit
2c872b0d94
@ -0,0 +1,28 @@ |
||||
load( |
||||
'scripts/drone/steps/lib.star', |
||||
'enterprise_downstream_step', |
||||
) |
||||
|
||||
load( |
||||
'scripts/drone/utils/utils.star', |
||||
'pipeline', |
||||
) |
||||
|
||||
trigger = { |
||||
'event': ['push',], |
||||
'branch': 'main', |
||||
'paths': { |
||||
'exclude': [ |
||||
'*.md', |
||||
'docs/**', |
||||
'latest.json', |
||||
], |
||||
}, |
||||
} |
||||
|
||||
def enterprise_downstream_pipeline(edition, ver_mode): |
||||
steps = [enterprise_downstream_step(edition, ver_mode)] |
||||
deps = ['main-publish'] |
||||
return pipeline( |
||||
name='main-trigger-downstream', edition=edition, trigger=trigger, services=[], steps=steps, depends_on=deps |
||||
) |
Loading…
Reference in new issue