forked from tediousjs/tedious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
144 lines (130 loc) · 3.95 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
language: node_js
sudo: false
node_js:
- "6"
- "8"
- "10"
- "12"
- "13"
cache:
npm: false
stages:
- name: test
if: (type = push) OR (type = pull_request)
- name: azure
if: (type = push)
- name: lint
if: (type = push) OR (type = pull_request)
- name: release
if: (type = push) AND (branch = master)
- name: tag-latest
if: (type = cron)
services:
- docker
before_install:
- docker pull microsoft/mssql-server-linux
- docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=yourStrong(!)Password' -p 1433:1433 -d microsoft/mssql-server-linux
- mkdir ~/.tedious
- >
echo '{
"config": {
"server": "localhost",
"authentication": {
"type": "default",
"options": {
"userName": "sa",
"password": "yourStrong(!)Password"
}
},
"options": {
"port": 1433,
"database": "master",
"trustServerCertificate": true
}
}
}' > ~/.tedious/test-connection.json
before_script:
- npm prune
script:
- npx nyc --reporter=lcov npm run test && npx codecov
- TEDIOUS_TDS_VERSION=7_4 npx nyc --reporter=lcov npm run test-integration && npx codecov
- TEDIOUS_TDS_VERSION=7_3_B npx nyc --reporter=lcov npm run test-integration && npx codecov
- TEDIOUS_TDS_VERSION=7_3_A npx nyc --reporter=lcov npm run test-integration && npx codecov
- TEDIOUS_TDS_VERSION=7_2 npx nyc --reporter=lcov npm run test-integration && npx codecov
- TEDIOUS_TDS_VERSION=7_1 npx nyc --reporter=lcov npm run test-integration && npx codecov
jobs:
include:
- stage: lint
node_js: 8
before_install: skip
before_script: skip
script:
- npm run lint
- commitlint-travis
- stage: azure
node_js: 8
before_install:
- mkdir ~/.tedious
- >
echo '{
"config": {
"server": "'${AZURE_SERVER}'",
"authentication": {
"type": "default",
"options": {
"userName": "'${AZURE_USERNAME}'",
"password": "'${AZURE_PASS}'"
}
},
"options": {
"database": "test",
"trustServerCertificate": true
}
}
}' > ~/.tedious/test-connection.json
before_script: skip
script: npx nyc --reporter=lcov npm run test-integration && npx codecov
- stage: azure
node_js: 8
before_install:
- mkdir ~/.tedious
- >
echo '{
"config": {
"server": "'${AZURE_SERVER}'",
"authentication": {
"type": "azure-active-directory-password",
"options": {
"userName": "'${AZURE_AD_USER}'",
"password": "'${AZURE_AD_PASS}'"
}
},
"options": {
"database": "test",
"trustServerCertificate": true
}
}
}' > ~/.tedious/test-connection.json
before_script: skip
script: npx nyc --reporter=lcov npm run test-integration && npx codecov
- stage: release
node_js: 12
before_install: skip
before_script: skip
script: npm run semantic-release
- stage: tag-latest
node_js: 8
before_install:
- echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc
before_script: skip
script:
- |
read next latest <<< $(npm info tedious --json | jq -r '."dist-tags".next, ."dist-tags".latest')
if [ "$(printf '%s\n' "$latest" "$next" | sort -V | tail -n 1)" != "$latest" ]; then
date_format="%Y-%m-%dT%H:%M:%SZ"
publish_date=$(date -d $(npm info tedious --json | jq -r '.time["'"$next"'"]') +$date_format)
week_ago=$(date -d '-7 days' +$date_format)
if [[ "$publish_date" < "$week_ago" || "$publish_date" == "$week_ago" ]]; then
npm dist-tag add "tedious@$next" latest
fi
fi