mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
22 lines
465 B
YAML
22 lines
465 B
YAML
# libzmq
|
|
|
|
language: c
|
|
|
|
# Build required projects first
|
|
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 ..
|
|
|
|
# Build and check libzmq
|
|
script: ./autogen.sh && ./configure && make && make check
|