CI: Run only Grafana builds on RGM for grafana/grafana (#72144)

* Run only OSS builds on RGM for grafana/grafana

* Update script name

* Ignore windows step failure for RGM
This commit is contained in:
Guilherme Caulada
2023-07-21 17:50:06 -03:00
committed by GitHub
parent 0589060041
commit f005a375db
5 changed files with 34 additions and 152 deletions

View File

@ -130,3 +130,8 @@ def with_deps(steps, deps = []):
for step in steps:
step["depends_on"] = deps
return steps
def ignore_failure(steps):
for step in steps:
step["failure"] = "ignore"
return steps