mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
b13939b9af
* Removes enterprise specific pipelines and steps (#123) * Comment out enterprise related pipelines and steps * Suppress unused variable warning * Removes all edition arguments * Remove leftover comments * Remove redundant oss on pipelines and steps names * Remove leftover unused variable * Remove leftovers * Remove pipeline dependencies * Rename pipelines * Fix starlark --------- Co-authored-by: dsotirakis <dimitrios.sotirakis@grafana.com> (cherry picked from commit 642a81ba75e79138246797302aba5c35575f030d) # Conflicts: # .drone.yml # scripts/drone/steps/lib.star # Conflicts: # .drone.yml * Add editions for static assets # Conflicts: # .drone.yml # Conflicts: # .drone.yml
64 lines
1.9 KiB
Plaintext
64 lines
1.9 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
|
|
"""
|
|
This module returns a Drone configuration including pipelines and secrets.
|
|
"""
|
|
|
|
load("scripts/drone/events/pr.star", "pr_pipelines")
|
|
load("scripts/drone/events/main.star", "main_pipelines")
|
|
load(
|
|
"scripts/drone/events/release.star",
|
|
"integration_test_pipelines",
|
|
"oss_pipelines",
|
|
"publish_artifacts_pipelines",
|
|
"publish_npm_pipelines",
|
|
"publish_packages_pipeline",
|
|
"verify_release_pipeline",
|
|
)
|
|
load(
|
|
"scripts/drone/rgm.star",
|
|
"rgm",
|
|
)
|
|
load(
|
|
"scripts/drone/pipelines/publish_images.star",
|
|
"publish_image_pipelines_public",
|
|
)
|
|
load(
|
|
"scripts/drone/pipelines/ci_images.star",
|
|
"publish_ci_build_container_image_pipeline",
|
|
"publish_ci_windows_test_image_pipeline",
|
|
)
|
|
load(
|
|
"scripts/drone/pipelines/windows.star",
|
|
"windows_test_backend",
|
|
)
|
|
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() +
|
|
publish_image_pipelines_public() +
|
|
publish_artifacts_pipelines("public") +
|
|
publish_npm_pipelines() +
|
|
publish_packages_pipeline() +
|
|
[verify_release_pipeline()] +
|
|
rgm() +
|
|
[windows_test_backend({
|
|
"event": ["promote"],
|
|
"target": ["test-windows"],
|
|
}, "oss", "testing")] +
|
|
version_branch_pipelines() +
|
|
integration_test_pipelines() +
|
|
publish_ci_windows_test_image_pipeline() +
|
|
publish_ci_build_container_image_pipeline() +
|
|
cronjobs() +
|
|
secrets()
|
|
)
|