forked from sequelize/sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
62 lines (51 loc) · 1.5 KB
/
.travis.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
sudo: required
dist: trusty
language: node_js
node_js:
- "4"
- "6"
branches:
only:
- master
- v3
env:
global:
# mysql info
- SEQ_MYSQL_DB: sequelize_test
- SEQ_MYSQL_USER: sequelize_test
- SEQ_MYSQL_PW: sequelize_test
- SEQ_MYSQL_HOST: 127.0.0.1
- SEQ_MYSQL_PORT: 8999
# postgres info
- SEQ_PG_DB: sequelize_test
- SEQ_PG_USER: sequelize_test
- SEQ_PG_PW: sequelize_test
- SEQ_PG_HOST: 127.0.0.1
- SEQ_PG_PORT: 8998
matrix:
- DIALECT=sqlite COVERAGE=true
- MYSQL_VER=mysql-57 DIALECT=mysql COVERAGE=true
- POSTGRES_VER=postgres-95 DIALECT=postgres COVERAGE=true
- POSTGRES_VER=postgres-95 DIALECT=postgres-native COVERAGE=true
before_script:
- "if [ $POSTGRES_VER ] || [ $MYSQL_VER ]; then docker-compose up -d ${POSTGRES_VER} ${MYSQL_VER}; fi"
- "if [ $MYSQL_VER ]; then docker run --link ${MYSQL_VER}:db -e CHECK_PORT=3306 -e CHECK_HOST=db --net sequelize_default giorgos/takis; fi"
- "if [ $POSTGRES_VER ]; then docker run --link ${POSTGRES_VER}:db -e CHECK_PORT=5432 -e CHECK_HOST=db --net sequelize_default giorgos/takis; fi"
script:
- npm run lint
- "if [ $COVERAGE ]; then npm run cover && bash <(curl -s https://codecov.io/bash) -f coverage/lcov.info; else npm run test; fi"
after_success:
- npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
deploy:
provider: surge
project: ./esdoc/
domain: docs.sequelizejs.com
skip_cleanup: true
on:
branch: master
node: 6
before_deploy:
- npm run docs