mirror of
https://github.com/grafana/grafana.git
synced 2024-12-25 08:21:46 -06:00
CI: set RGM deps on main merge not on tag (#67778)
set deps on main merge not on tag
This commit is contained in:
parent
768efe9748
commit
80543a0bfa
10
.drone.yml
10
.drone.yml
@ -4548,7 +4548,9 @@ volumes:
|
|||||||
---
|
---
|
||||||
clone:
|
clone:
|
||||||
retries: 3
|
retries: 3
|
||||||
depends_on: []
|
depends_on:
|
||||||
|
- main-test-backend
|
||||||
|
- main-test-frontend
|
||||||
image_pull_secrets:
|
image_pull_secrets:
|
||||||
- dockerconfigjson
|
- dockerconfigjson
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
@ -4595,9 +4597,7 @@ volumes:
|
|||||||
---
|
---
|
||||||
clone:
|
clone:
|
||||||
retries: 3
|
retries: 3
|
||||||
depends_on:
|
depends_on: []
|
||||||
- main-test-backend
|
|
||||||
- main-test-frontend
|
|
||||||
image_pull_secrets:
|
image_pull_secrets:
|
||||||
- dockerconfigjson
|
- dockerconfigjson
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
@ -6941,6 +6941,6 @@ kind: secret
|
|||||||
name: github_token
|
name: github_token
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: d6bfbf6fa92bf3ed68b72ed6315e926aeec8b50e08a44cff1e40f0561007a0fd
|
hmac: e819db5b752a99280213ed98baa12c0c27c87521c826580a8067c957579db98f
|
||||||
|
|
||||||
...
|
...
|
||||||
|
@ -66,6 +66,7 @@ def rgm_main():
|
|||||||
edition = "all",
|
edition = "all",
|
||||||
trigger = trigger,
|
trigger = trigger,
|
||||||
steps = rgm_build(),
|
steps = rgm_build(),
|
||||||
|
depends_on = ["main-test-backend", "main-test-frontend"],
|
||||||
)
|
)
|
||||||
|
|
||||||
def rgm_tag():
|
def rgm_tag():
|
||||||
@ -90,7 +91,7 @@ def rgm_tag():
|
|||||||
edition = "all",
|
edition = "all",
|
||||||
trigger = trigger,
|
trigger = trigger,
|
||||||
steps = rgm_build(script = "drone_publish_tag.sh"),
|
steps = rgm_build(script = "drone_publish_tag.sh"),
|
||||||
depends_on = ["main-test-backend", "main-test-frontend"],
|
depends_on = [],
|
||||||
)
|
)
|
||||||
|
|
||||||
def rgm():
|
def rgm():
|
||||||
|
Loading…
Reference in New Issue
Block a user