Skip to content
This repository was archived by the owner on May 15, 2019. It is now read-only.

Commit c2b5ef8

Browse files
committed
Actually fix travis builds
Summary: Apparently we need a C++ compiler! https://docs.travis-ci.com/user/languages/javascript-with-nodejs#Node.js-v4-(or-io.js-v3)-compiler-requirements to the rescue. Test plan: - Push to travis - See that it succeeds Auditors: alex
1 parent 4f9a488 commit c2b5ef8

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

Diff for: .travis.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
language: node_js
22
node_js:
3-
- '4'
4-
- '5'
3+
- '4'
4+
env:
5+
- CXX=g++-4.8
6+
addons:
7+
apt:
8+
sources:
9+
- ubuntu-toolchain-r-test
10+
packages:
11+
- g++-4.8

0 commit comments

Comments
 (0)