diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index a0d3833a..a304a0a4 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -5,21 +5,22 @@ compiler: | |||
5 | before_script: | 5 | before_script: |
6 | - git clone git://github.com/jedisct1/libsodium.git | 6 | - git clone git://github.com/jedisct1/libsodium.git |
7 | - cd libsodium | 7 | - cd libsodium |
8 | - git checkout tags/0.4.2 | ||
8 | - ./autogen.sh | 9 | - ./autogen.sh |
9 | - ./configure && make -j 3 check | 10 | - ./configure && make -j3 check |
11 | - sudo make install | ||
12 | - sudo ldconfig | ||
10 | - cd .. | 13 | - cd .. |
11 | 14 | ||
12 | script: | 15 | script: |
13 | #- cmake CMakeLists.txt | 16 | - cmake CMakeLists.txt |
14 | #- make -j3 | 17 | - make -j3 |
15 | - gcc -o test -Wall -Werror -Ilibsodium/src/libsodium/include/ core/*.c libsodium/src/libsodium/.libs/libsodium.a testing/Messenger_test.c | ||
16 | 18 | ||
17 | notifications: | 19 | notifications: |
18 | email: false | 20 | email: false |
19 | 21 | ||
20 | irc: | 22 | irc: |
21 | channels: | 23 | channels: |
22 | - "chat.freenode.net#InsertProjectNameHere" | 24 | - "chat.freenode.net#InsertProjectNameHere" |
23 | on_success: always | 25 | on_success: always |
24 | on_failure: always | 26 | on_failure: always |
25 | |||