8f26909611
* CI: Add Windows backend tests in more places
* CI: Add promotion pipeline for publishing new windows-test-images
* CI: Ignore windows backend-test failures for now
* CI: Fix linting issue in ci_images.star file
(cherry picked from commit b2fc285a5d)
82 lines
2.3 KiB
Python
82 lines
2.3 KiB
Python
"""
|
|
This module returns the pipeline used for building Grafana on Windows.
|
|
"""
|
|
|
|
load(
|
|
"scripts/drone/utils/utils.star",
|
|
"pipeline",
|
|
)
|
|
load(
|
|
"scripts/drone/steps/lib.star",
|
|
"get_windows_steps",
|
|
"windows_go_image",
|
|
"windows_init_enterprise_steps",
|
|
"windows_test_backend_step",
|
|
"windows_wire_install_step",
|
|
)
|
|
|
|
def windows_test_backend(trigger, edition, ver_mode):
|
|
""" Generates a pipeline that runs backend tests on Windows
|
|
|
|
Args:
|
|
trigger: a Drone trigger for the pipeline
|
|
edition: controls whether enterprise code is included or not
|
|
ver_mode: controls whether a pre-release or actual release pipeline is generated.
|
|
Returns:
|
|
A single pipeline running backend tests for Windows
|
|
"""
|
|
environment = {"EDITION": edition}
|
|
steps = []
|
|
|
|
if edition == "enterprise":
|
|
steps.extend(windows_init_enterprise_steps(ver_mode))
|
|
else:
|
|
steps.extend([{
|
|
"name": "windows-init",
|
|
"image": windows_go_image,
|
|
"commands": [],
|
|
}])
|
|
|
|
steps.extend([
|
|
windows_wire_install_step(edition),
|
|
windows_test_backend_step(),
|
|
])
|
|
return pipeline(
|
|
name = "{}-{}-test-backend-windows".format(ver_mode, edition),
|
|
edition = edition,
|
|
trigger = trigger,
|
|
steps = steps,
|
|
depends_on = [],
|
|
platform = "windows",
|
|
environment = environment,
|
|
)
|
|
|
|
def windows(trigger, edition, ver_mode):
|
|
"""Generates the pipeline used for building Grafana on Windows.
|
|
|
|
Args:
|
|
trigger: a Drone trigger for the pipeline.
|
|
edition: controls whether enterprise code is included in the pipeline steps.
|
|
ver_mode: controls whether a pre-release or actual release pipeline is generated.
|
|
Also indirectly controls which version of enterprise code is used.
|
|
|
|
Returns:
|
|
Drone pipeline.
|
|
"""
|
|
environment = {"EDITION": edition}
|
|
|
|
return pipeline(
|
|
name = "main-windows",
|
|
edition = edition,
|
|
trigger = dict(trigger, repo = ["grafana/grafana"]),
|
|
steps = get_windows_steps(edition, ver_mode),
|
|
depends_on = [
|
|
"main-test-frontend",
|
|
"main-test-backend",
|
|
"main-build-e2e-publish",
|
|
"main-integration-tests",
|
|
],
|
|
platform = "windows",
|
|
environment = environment,
|
|
)
|