You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .travis.yml
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,12 +9,18 @@ addons:
9
9
packages:
10
10
- g++-4.8
11
11
node_js:
12
-
- "0.10"
13
-
- "0.12"
14
12
- "4"
15
13
- "6"
16
14
- "8"
17
15
- "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
+
18
24
after_success: npm run coveralls
19
25
before_script:
20
26
# Add an IPv6 config - see the corresponding Travis issue
0 commit comments