-
Notifications
You must be signed in to change notification settings - Fork 119
/
.gitlab-ci.yml
104 lines (94 loc) · 1.63 KB
/
.gitlab-ci.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
image: biggora/gitlab-zone
# services:
# - arangodb
# - neo4j
variables:
MYSQL_USER: "test"
MYSQL_PASSWORD: "test"
MYSQL_DATABASE: "test"
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
POSTGRES_USER: "test"
POSTGRES_PASSWORD: "test"
POSTGRES_DB: "test"
ARANGO_ROOT_PASSWORD: "test"
ARANGO_NO_AUTH: "1"
ARANGO_RANDOM_ROOT_PASSWORD: "0"
before_script:
- cat /etc/hosts | grep 172
stages:
- test
redis:
services:
- redis
stage: test
script:
- npm install bluebird mocha should redis
- make test-redis
only:
- master
tags:
- node
sqlite:
stage: test
script:
- npm install bluebird mocha should sqlite3
- make test-sqlite
only:
- master
tags:
- node
mysql:
services:
- mysql
stage: test
script:
- npm install bluebird mocha should mysql
- make test-mysql
only:
- master
tags:
- node
postgres:
services:
- postgres
stage: test
script:
- npm install bluebird mocha should pg
- make test-postgres
only:
- master
tags:
- node
mongo:
services:
- mongo
stage: test
script:
- npm install bluebird mocha should mongodb
- make test-mongo
only:
- master
tags:
- node
arango:
services:
- arangodb
stage: test
script:
- npm install bluebird mocha should arangojs
- make test-arango
only:
- master
tags:
- node
rethinkdb:
services:
- rethinkdb
stage: test
script:
- npm install bluebird mocha should async generic-pool rethinkdb moment
- make test-rethinkdb
only:
- master
tags:
- node