-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy path.drone.yml
More file actions
44 lines (38 loc) · 772 Bytes
/
.drone.yml
File metadata and controls
44 lines (38 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
workspace:
base: /checkup
kind: pipeline
name: checkup
steps:
- name: test-mysql
image: golang:1.14
pull: always
commands:
- make test-mysql
- make build-mysql
- name: test-postgres
image: golang:1.14
pull: always
commands:
- make test-postgres
- make build-postgres
- name: test-sqlite3
image: golang:1.14
pull: always
commands:
- make test-sqlite3
- make build-sqlite3
services:
- name: postgres-test-db
image: postgres:12-alpine
environment:
POSTGRES_PASSWORD: test
POSTGRES_USER: test
POSTGRES_DB: test
- name: mysql-test-db
pull: always
image: percona/percona-server:8.0.17
environment:
MYSQL_RANDOM_ROOT_PASSWORD: true
MYSQL_USER: test
MYSQL_PASSWORD: test
MYSQL_DATABASE: test