| Index: .travis.yml |
| diff --git a/.travis.yml b/.travis.yml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..344e86ac9e48c69238f901439823c93d8628ccef |
| --- /dev/null |
| +++ b/.travis.yml |
| @@ -0,0 +1,22 @@ |
| +language: cpp |
|
sergei
2018/01/11 21:53:13
The language is cpp because it will simplify it wh
|
| + |
| +os: |
| +- linux |
| +- osx |
| + |
| +dist: trusty |
| + |
| +python: '2.7' |
| + |
| +install: |
| + - nvm install 8.9.4 |
|
sergei
2018/01/11 21:53:13
current latest LTS, For the beginning IMO it's eno
|
| + |
| +before_script: |
| + - ./ensure_dependencies.py |
| + - npm install |
| + |
| +script: |
| + - npm test |
| + |
| +notifications: |
| + email: false |
|
tlucas
2018/01/17 12:41:40
Do we not want to be notified about failed builds?
sergei
2018/01/17 14:25:30
Just would like to precise that it can be configur
|