mirror of https://github.com/grafana/grafana.git
Add services to main-integration-tests (#43325)
This commit is contained in:
parent
2fd2fd353e
commit
b7f8c1855d
24
.drone.yml
24
.drone.yml
|
|
@ -830,7 +830,27 @@ node:
|
||||||
platform:
|
platform:
|
||||||
arch: amd64
|
arch: amd64
|
||||||
os: linux
|
os: linux
|
||||||
services: []
|
services:
|
||||||
|
- environment:
|
||||||
|
PGDATA: /var/lib/postgresql/data/pgdata
|
||||||
|
POSTGRES_DB: grafanatest
|
||||||
|
POSTGRES_PASSWORD: grafanatest
|
||||||
|
POSTGRES_USER: grafanatest
|
||||||
|
image: postgres:12.3-alpine
|
||||||
|
name: postgres
|
||||||
|
volumes:
|
||||||
|
- name: postgres
|
||||||
|
path: /var/lib/postgresql/data/pgdata
|
||||||
|
- environment:
|
||||||
|
MYSQL_DATABASE: grafana_tests
|
||||||
|
MYSQL_PASSWORD: password
|
||||||
|
MYSQL_ROOT_PASSWORD: rootpass
|
||||||
|
MYSQL_USER: grafana
|
||||||
|
image: mysql:5.6.48
|
||||||
|
name: mysql
|
||||||
|
volumes:
|
||||||
|
- name: mysql
|
||||||
|
path: /var/lib/mysql
|
||||||
steps:
|
steps:
|
||||||
- commands:
|
- commands:
|
||||||
- mkdir -p bin
|
- mkdir -p bin
|
||||||
|
|
@ -4289,6 +4309,6 @@ kind: secret
|
||||||
name: prerelease_bucket
|
name: prerelease_bucket
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: f551ccae0072c77a25a540bcc61f49946d972a60d67a2987b40cfdf3e6c87e04
|
hmac: e9f0799a3d0a25a5a7caa6bca1e09ee7590d0877c7d56c680b64e6e601d17f3a
|
||||||
|
|
||||||
...
|
...
|
||||||
|
|
|
||||||
|
|
@ -179,7 +179,7 @@ def main_pipelines(edition):
|
||||||
volumes=volumes,
|
volumes=volumes,
|
||||||
),
|
),
|
||||||
pipeline(
|
pipeline(
|
||||||
name='main-integration-tests', edition=edition, trigger=trigger, services=[],
|
name='main-integration-tests', edition=edition, trigger=trigger, services=services,
|
||||||
steps=[download_grabpl_step()] + initialize_step(edition, platform='linux', ver_mode=ver_mode) + integration_test_steps,
|
steps=[download_grabpl_step()] + initialize_step(edition, platform='linux', ver_mode=ver_mode) + integration_test_steps,
|
||||||
volumes=volumes,
|
volumes=volumes,
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue