[v9.5.x] CI: Run only Grafana builds on RGM for grafana/grafana (#72160)

* CI: Try setting the vault secret for 'grafana_api_key' (#71981)

* Try setting the vault secret

* Maybe?

* forgot .drone.yml

* CI: Use GCP keys in vault and not drone secrets (#72023)

* 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

---------

Co-authored-by: Guilherme Caulada <guilherme.caulada@grafana.com>
This commit is contained in:
Kevin Minehart
2023-07-21 18:27:50 -03:00
committed by GitHub
co-authored by Guilherme Caulada
parent 36f1080ba6
commit a7302e7cc4
7 changed files with 94 additions and 181 deletions
+5
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