mirror of
https://github.com/grafana/grafana.git
synced 2024-12-28 01:41:24 -06:00
Make initialize depend on clone, only on enterprise pipelines (#41909)
This commit is contained in:
parent
e8a2a82d5c
commit
7dcc5ca199
@ -1220,7 +1220,7 @@ steps:
|
|||||||
- ./bin/grabpl gen-version ${DRONE_TAG}
|
- ./bin/grabpl gen-version ${DRONE_TAG}
|
||||||
- yarn install --immutable
|
- yarn install --immutable
|
||||||
depends_on:
|
depends_on:
|
||||||
- grabpl
|
- clone
|
||||||
image: grafana/build-container:1.4.5
|
image: grafana/build-container:1.4.5
|
||||||
name: initialize
|
name: initialize
|
||||||
- commands:
|
- commands:
|
||||||
@ -2154,7 +2154,7 @@ steps:
|
|||||||
- ./bin/grabpl gen-version v7.3.0-test
|
- ./bin/grabpl gen-version v7.3.0-test
|
||||||
- yarn install --immutable
|
- yarn install --immutable
|
||||||
depends_on:
|
depends_on:
|
||||||
- grabpl
|
- clone
|
||||||
image: grafana/build-container:1.4.5
|
image: grafana/build-container:1.4.5
|
||||||
name: initialize
|
name: initialize
|
||||||
- commands:
|
- commands:
|
||||||
@ -3057,7 +3057,7 @@ steps:
|
|||||||
- ./bin/grabpl gen-version --build-id ${DRONE_BUILD_NUMBER}
|
- ./bin/grabpl gen-version --build-id ${DRONE_BUILD_NUMBER}
|
||||||
- yarn install --immutable
|
- yarn install --immutable
|
||||||
depends_on:
|
depends_on:
|
||||||
- grabpl
|
- clone
|
||||||
image: grafana/build-container:1.4.5
|
image: grafana/build-container:1.4.5
|
||||||
name: initialize
|
name: initialize
|
||||||
- commands:
|
- commands:
|
||||||
@ -3556,6 +3556,6 @@ kind: secret
|
|||||||
name: drone_token
|
name: drone_token
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: a65c9c26e3fb9343f39cfb88af9c20f0541f3ad161d26fa698dec1908646991a
|
hmac: 12c6a397733d4624d68b34b9eeb4b3b0728eb9a1c678cf6eeb9b435f9b9a652f
|
||||||
|
|
||||||
...
|
...
|
||||||
|
@ -97,7 +97,7 @@ def initialize_step(edition, platform, ver_mode, is_downstream=False, install_de
|
|||||||
'name': 'initialize',
|
'name': 'initialize',
|
||||||
'image': build_image,
|
'image': build_image,
|
||||||
'depends_on': [
|
'depends_on': [
|
||||||
'grabpl',
|
'clone',
|
||||||
],
|
],
|
||||||
'commands': [
|
'commands': [
|
||||||
'mv bin/grabpl /tmp/',
|
'mv bin/grabpl /tmp/',
|
||||||
|
Loading…
Reference in New Issue
Block a user