Skip to content

Commit a4fec3c

Browse files
committed
tests(travis): drop < node v4, add v13 & install stunnel
1 parent 7c551bf commit a4fec3c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.travis.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,18 @@ addons:
99
packages:
1010
- g++-4.8
1111
node_js:
12-
- "0.10"
13-
- "0.12"
1412
- "4"
1513
- "6"
1614
- "8"
1715
- "12"
16+
- "13"
17+
18+
before_install:
19+
- if [[ ! -f downloads/stunnel-5.54.tar.gz ]]; then wget -O downloads/stunnel-5.54.tar.gz ftp://ftp.stunnel.org/stunnel/archive/5.x/stunnel-5.54.tar.gz; fi
20+
- if [[ ! -f ./stunnel-5.54/configure ]]; then tar -xzf downloads/stunnel-5.54.tar.gz; fi
21+
- if [[ ! -f ./stunnel-5.54/src/stunnel ]]; then cd ./stunnel-5.54; ./configure; make; cd ..; fi
22+
- export PATH="$PATH:$(pwd)/stunnel-5.54/src"
23+
1824
after_success: npm run coveralls
1925
before_script:
2026
# Add an IPv6 config - see the corresponding Travis issue

0 commit comments

Comments
 (0)