mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
e9cf8fa751
* Add github.star # Conflicts: # .drone.star # .drone.yml * Make step depend on fetch images # Conflicts: # .drone.yml * artifacts -> path # Conflicts: # .drone.yml * Add github token # Conflicts: # .drone.yml * Fix custom path # Conflicts: # .drone.yml * Add case where path is absent # Conflicts: # .drone.yml * Add GH_REGISTRY secret # Conflicts: # .drone.yml
55 lines
1.8 KiB
Plaintext
55 lines
1.8 KiB
Plaintext
# To generate the .drone.yml file:
|
|
# 1. Modify the *.star definitions
|
|
# 2. Login to drone and export the env variables (token and server) shown here: https://drone.grafana.net/account
|
|
# 3. Run `make drone`
|
|
# More information about this process here: https://github.com/grafana/deployment_tools/blob/master/docs/infrastructure/drone/signing.md
|
|
|
|
load('scripts/drone/events/pr.star', 'pr_pipelines')
|
|
load('scripts/drone/events/main.star', 'main_pipelines')
|
|
load('scripts/drone/pipelines/docs.star', 'docs_pipelines')
|
|
load(
|
|
'scripts/drone/events/release.star',
|
|
'oss_pipelines',
|
|
'enterprise_pipelines',
|
|
'enterprise2_pipelines',
|
|
'publish_artifacts_pipelines',
|
|
'publish_npm_pipelines',
|
|
'publish_packages_pipeline',
|
|
'artifacts_page_pipeline',
|
|
)
|
|
load(
|
|
'scripts/drone/pipelines/publish_images.star',
|
|
'publish_image_pipelines_public',
|
|
'publish_image_pipelines_security',
|
|
)
|
|
load('scripts/drone/pipelines/github.star', 'publish_github_pipeline')
|
|
load('scripts/drone/version.star', 'version_branch_pipelines')
|
|
load('scripts/drone/events/cron.star', 'cronjobs')
|
|
load('scripts/drone/vault.star', 'secrets')
|
|
|
|
|
|
def main(ctx):
|
|
return (
|
|
pr_pipelines()
|
|
+ main_pipelines()
|
|
+ oss_pipelines()
|
|
+ enterprise_pipelines()
|
|
+ enterprise2_pipelines()
|
|
+ enterprise2_pipelines(
|
|
prefix='custom-',
|
|
trigger={'event': ['custom']},
|
|
)
|
|
+ publish_image_pipelines_public()
|
|
+ publish_image_pipelines_security()
|
|
+ publish_github_pipeline('public')
|
|
+ publish_github_pipeline('security')
|
|
+ publish_artifacts_pipelines('security')
|
|
+ publish_artifacts_pipelines('public')
|
|
+ publish_npm_pipelines()
|
|
+ publish_packages_pipeline()
|
|
+ artifacts_page_pipeline()
|
|
+ version_branch_pipelines()
|
|
+ cronjobs()
|
|
+ secrets()
|
|
)
|