forked from appleboy/docker-backup-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.jsonnet
19 lines (18 loc) · 828 Bytes
/
.drone.jsonnet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
local pipeline = import 'pipeline.libsonnet';
local name = 'docker-backup-database';
[
pipeline.test,
pipeline.build(name, 'linux', 'amd64', 'mysql', '5.6'),
pipeline.build(name, 'linux', 'amd64', 'mysql', '5.7'),
pipeline.build(name, 'linux', 'amd64', 'mysql', '8'),
pipeline.build(name, 'linux', 'amd64', 'postgres', '9'),
pipeline.build(name, 'linux', 'amd64', 'postgres', '10'),
pipeline.build(name, 'linux', 'amd64', 'postgres', '11'),
pipeline.build(name, 'linux', 'amd64', 'postgres', '12'),
pipeline.build(name, 'linux', 'amd64', 'postgres', '13'),
pipeline.build(name, 'linux', 'amd64', 'mongo', '3.6'),
pipeline.build(name, 'linux', 'amd64', 'mongo', '4'),
pipeline.build(name, 'linux', 'amd64', 'mongo', '4.2'),
pipeline.build(name, 'linux', 'amd64', 'mongo', '4.4'),
pipeline.release,
]