-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
49 lines (39 loc) · 945 Bytes
/
.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
language: node_js
node_js:
- "8"
- "10"
#os:
# - linux
# - osx
matrix:
allow_failures:
# - os: osx
# - node_js: "8"
fast_finish: true
services:
addons:
apt:
packages:
- clamav-freshclam
- clamav-daemon
- opendkim-tools
- opendkim
# - spamassassin
# - dspam
# - rspamd
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y opendkim --force-yes
before_script:
- sudo test/helpers/install-clamav.sh
- sudo test/helpers/install-dspam.sh
# - sudo test/helpers/install-rspamd.sh
- sudo test/helpers/install-spamassassin.sh
#script:
after_success:
# - npm install istanbul codecov.io
# - sudo test/helpers/install-rspamd.sh (not available on Ubuntu?)
# - NODE_ENV=cov ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec
# - cat ./coverage/coverage.json | ./node_modules/.bin/codecov
after_script:
sudo: required