Make integration tests depend on initialize for enterprise-release-* branches (#42004)

This commit is contained in:
Dimitris Sotirakis
2021-11-19 21:50:34 +01:00
committed by GitHub
parent 07a440fd3a
commit bec3cc4634
5 changed files with 36 additions and 36 deletions

View File

@@ -1289,7 +1289,7 @@ steps:
- go clean -testcache
- ./bin/grabpl integration-tests --database postgres
depends_on:
- clone-enterprise
- initialize
environment:
GRAFANA_TEST_DB: postgres
PGPASSWORD: grafanatest
@@ -1305,7 +1305,7 @@ steps:
- go clean -testcache
- ./bin/grabpl integration-tests --database mysql
depends_on:
- clone-enterprise
- initialize
environment:
GRAFANA_TEST_DB: mysql
MYSQL_HOST: mysql
@@ -1472,7 +1472,7 @@ steps:
- dockerize -wait tcp://redis:6379/0 -timeout 120s
- ./bin/grabpl integration-tests
depends_on:
- clone-enterprise
- initialize
environment:
REDIS_URL: redis://redis:6379/0
image: grafana/build-container:1.4.6
@@ -1481,7 +1481,7 @@ steps:
- dockerize -wait tcp://memcached:11211 -timeout 120s
- ./bin/grabpl integration-tests
depends_on:
- clone-enterprise
- initialize
environment:
MEMCACHED_HOSTS: memcached:11211
image: grafana/build-container:1.4.6
@@ -2223,7 +2223,7 @@ steps:
- go clean -testcache
- ./bin/grabpl integration-tests --database postgres
depends_on:
- clone-enterprise
- grabpl
environment:
GRAFANA_TEST_DB: postgres
PGPASSWORD: grafanatest
@@ -2239,7 +2239,7 @@ steps:
- go clean -testcache
- ./bin/grabpl integration-tests --database mysql
depends_on:
- clone-enterprise
- grabpl
environment:
GRAFANA_TEST_DB: mysql
MYSQL_HOST: mysql
@@ -2398,7 +2398,7 @@ steps:
- dockerize -wait tcp://redis:6379/0 -timeout 120s
- ./bin/grabpl integration-tests
depends_on:
- clone-enterprise
- grabpl
environment:
REDIS_URL: redis://redis:6379/0
image: grafana/build-container:1.4.6
@@ -2407,7 +2407,7 @@ steps:
- dockerize -wait tcp://memcached:11211 -timeout 120s
- ./bin/grabpl integration-tests
depends_on:
- clone-enterprise
- grabpl
environment:
MEMCACHED_HOSTS: memcached:11211
image: grafana/build-container:1.4.6
@@ -3126,7 +3126,7 @@ steps:
- go clean -testcache
- ./bin/grabpl integration-tests --database postgres
depends_on:
- clone-enterprise
- initialize
environment:
GRAFANA_TEST_DB: postgres
PGPASSWORD: grafanatest
@@ -3142,7 +3142,7 @@ steps:
- go clean -testcache
- ./bin/grabpl integration-tests --database mysql
depends_on:
- clone-enterprise
- initialize
environment:
GRAFANA_TEST_DB: mysql
MYSQL_HOST: mysql
@@ -3306,7 +3306,7 @@ steps:
- dockerize -wait tcp://redis:6379/0 -timeout 120s
- ./bin/grabpl integration-tests
depends_on:
- clone-enterprise
- initialize
environment:
REDIS_URL: redis://redis:6379/0
image: grafana/build-container:1.4.6
@@ -3315,7 +3315,7 @@ steps:
- dockerize -wait tcp://memcached:11211 -timeout 120s
- ./bin/grabpl integration-tests
depends_on:
- clone-enterprise
- initialize
environment:
MEMCACHED_HOSTS: memcached:11211
image: grafana/build-container:1.4.6
@@ -3556,6 +3556,6 @@ kind: secret
name: drone_token
---
kind: signature
hmac: 680fc6fbb881c5e05c62395a4583652197c108835adb25081522b85de926f739
hmac: b39d46b8db4a124e8c99b85e07c802abf8f4e1ced98783d9193c1f5af202fbc2
...