mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
16 lines
355 B
YAML
16 lines
355 B
YAML
# Travis CI script
|
|
|
|
language: c
|
|
|
|
# Build required projects first
|
|
before_script:
|
|
|
|
# libsodium
|
|
- git clone git://github.com/jedisct1/libsodium.git
|
|
- ( cd libsodium; ./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
|