mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -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
30 lines
633 B
Plaintext
30 lines
633 B
Plaintext
"""
|
|
This module returns the pipeline used for verifying Drone configuration.
|
|
"""
|
|
|
|
load(
|
|
"scripts/drone/steps/lib.star",
|
|
"compile_build_cmd",
|
|
"identify_runner_step",
|
|
"lint_drone_step",
|
|
)
|
|
load(
|
|
"scripts/drone/utils/utils.star",
|
|
"pipeline",
|
|
)
|
|
|
|
def verify_drone(trigger, ver_mode):
|
|
environment = {"EDITION": "oss"}
|
|
steps = [
|
|
identify_runner_step(),
|
|
compile_build_cmd(),
|
|
lint_drone_step(),
|
|
]
|
|
return pipeline(
|
|
name = "{}-verify-drone".format(ver_mode),
|
|
trigger = trigger,
|
|
services = [],
|
|
steps = steps,
|
|
environment = environment,
|
|
)
|