mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 10:33:52 +01:00
15 lines
321 B
YAML
15 lines
321 B
YAML
# libzmq
|
|
|
|
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 libzmq
|
|
script:
|
|
- ./autogen.sh && ./configure && make && make check
|