Skip to content

Commit

Permalink
Problem: Travis CI doesn't use ci_build.sh
Browse files Browse the repository at this point in the history
Solution: use the available ci_build.sh instead of running all steps
inside travis.yml, which will allow more complex CI runs
  • Loading branch information
bluca committed Jan 19, 2016
1 parent 740d1e2 commit c2ebbc0
Showing 1 changed file with 4 additions and 20 deletions.
24 changes: 4 additions & 20 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,11 @@

language: c

env:
- BUILD_TYPE=default

# Build-check-install all subprojects
before_script:
- sudo apt-get install uuid-dev

# libsodium
- git clone git://github.com/jedisct1/libsodium.git
- ( cd libsodium; ./autogen.sh; ./configure; make check; sudo make install; sudo ldconfig )

# libzmq
- git clone git://github.com/zeromq/libzmq.git
- ( cd libzmq; ./autogen.sh; ./configure; make check; sudo make install; sudo ldconfig )

# CZMQ
- git clone git://github.com/zeromq/czmq.git
- ( cd czmq; ./autogen.sh; ./configure; make check; sudo make install; sudo ldconfig )

# Zyre
- git clone git://github.com/zeromq/zyre.git
- ( cd zyre; ./autogen.sh; ./configure; make check; sudo make install; sudo ldconfig )

# Build and check this project
script:
- ./autogen.sh && ./configure && make && make check
- sudo make install
script: ./ci_build.sh

0 comments on commit c2ebbc0

Please sign in to comment.