diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 9f62c84c..0a294bf1 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -8,16 +8,15 @@ before_script: | |||
8 | - cd libsodium | 8 | - cd libsodium |
9 | - git checkout tags/0.4.2 | 9 | - git checkout tags/0.4.2 |
10 | - ./autogen.sh | 10 | - ./autogen.sh |
11 | - ./configure && make -j3 check | 11 | - ./configure && make check -j3 |
12 | - sudo make install | 12 | - sudo make install |
13 | - sudo ldconfig | 13 | - sudo ldconfig |
14 | - cd .. | 14 | - cd .. |
15 | 15 | ||
16 | script: | 16 | script: |
17 | - cmake CMakeLists.txt | 17 | - mkdir build && cd build |
18 | - make DHT_bootstrap -j3 | 18 | - cmake .. |
19 | - make Messenger_test -j3 | 19 | - make -j3 |
20 | - make nTox -j3 | ||
21 | 20 | ||
22 | notifications: | 21 | notifications: |
23 | email: false | 22 | email: false |