forked from zeromq/czmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (36 loc) · 866 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# CZMQ
language: c
script:
- ./autogen.sh
# Perform regression test build against ZeroMQ v3.x
- git clone git://github.com/zeromq/zeromq3-x.git
- cd zeromq3-x
- ./autogen.sh
- ./configure && make check
- sudo make install
- sudo ldconfig
- cd ..
# Build & test CZMQ
- ./configure && make check
# Perform regression test build against ZeroMQ v4.x
# 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 ..
# libzmq
- git clone git://github.com/zeromq/libzmq.git
- cd libzmq
- ./autogen.sh
- ./configure && make check
- sudo make install
- sudo ldconfig
- cd ..
# Build & test CZMQ
- ./configure && make check