diff options
author | Petar Šegina <psegina@ymail.com> | 2016-06-12 01:37:30 +0200 |
---|---|---|
committer | Petar Šegina <psegina@ymail.com> | 2016-06-12 01:37:30 +0200 |
commit | eb0687ba088709e7b77e4340a8b8675b4393ef28 (patch) | |
tree | fba18c6767d4104c11b5cfa66019b060768adc32 | |
parent | 2775c3b61e649fdc44d562ed449f80d37a605028 (diff) | |
download | git-hours-eb0687ba088709e7b77e4340a8b8675b4393ef28.zip git-hours-eb0687ba088709e7b77e4340a8b8675b4393ef28.tar.gz git-hours-eb0687ba088709e7b77e4340a8b8675b4393ef28.tar.bz2 |
Use a C++11 compliant compiler
This is necessary for Node.js 4 support. As per
https://docs.travis-ci.com/user/languages/javascript-with-nodejs#Node.js-v4-(or-io.js-v3)-compiler-requirements
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 285b6fe..c4de19c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,9 +16,12 @@ notifications: email: - kimmobrunfeldt+git-hours@gmail.com +env: + - CXX=g++-4.8 + addons: apt: sources: - ubuntu-toolchain-r-test packages: - - libstdc++-4.9-dev + - g++-4.8 |