Reworking Travis script

This commit is contained in:
Pieter Hintjens 2014-08-12 12:22:17 +02:00
parent 75d4f50be3
commit 785aebc6a8
3 changed files with 4 additions and 11 deletions

View File

@ -6,16 +6,9 @@ language: c
before_script:
# libsodium
# Commit 8d0942 broke installation (sodium.h not found) so for now
# we're checking out the last good commit.
- git clone git://github.com/jedisct1/libsodium.git
- cd libsodium
- git checkout e2a30a
- ./autogen.sh
- ./configure && make check
- sudo make install
- sudo ldconfig
- cd ..
- ( cd libsodium; ./autogen.sh; ./configure; make check; sudo make install; sudo ldconfig )
# Build and check libzmq
script: ./autogen.sh && ./configure && make && make check
script:
- ./autogen.sh && ./configure && make && make check

View File

@ -54,7 +54,7 @@ noinst_PROGRAMS = test_system \
test_metadata \
test_id2fd \
test_capabilities \
test_xpub_wait_inproc
test_xpub_nodrop
if !ON_MINGW
noinst_PROGRAMS += test_shutdown_stress \