mirror of
https://github.com/grafana/grafana.git
synced 2025-08-03 00:42:03 +08:00

* 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
43 lines
916 B
Plaintext
43 lines
916 B
Plaintext
"""
|
|
This module contains logic for checking if the package.json whats new url matches with the in-flight tag.
|
|
"""
|
|
|
|
load(
|
|
"scripts/drone/utils/images.star",
|
|
"images",
|
|
)
|
|
load(
|
|
"scripts/drone/steps/lib.star",
|
|
"compile_build_cmd",
|
|
)
|
|
load(
|
|
"scripts/drone/utils/utils.star",
|
|
"pipeline",
|
|
)
|
|
|
|
def whats_new_checker_step():
|
|
return {
|
|
"name": "whats-new-checker",
|
|
"image": images["go_image"],
|
|
"depends_on": [
|
|
"compile-build-cmd",
|
|
],
|
|
"commands": [
|
|
"./bin/build whatsnew-checker",
|
|
],
|
|
}
|
|
|
|
def whats_new_checker_pipeline(trigger):
|
|
environment = {"EDITION": "oss"}
|
|
steps = [
|
|
compile_build_cmd(),
|
|
whats_new_checker_step(),
|
|
]
|
|
return pipeline(
|
|
name = "release-whatsnew-checker",
|
|
trigger = trigger,
|
|
services = [],
|
|
steps = steps,
|
|
environment = environment,
|
|
)
|