summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Biro <nurupo.contributions@gmail.com>2014-02-22 16:54:33 -0500
committerMaxim Biro <nurupo.contributions@gmail.com>2014-02-22 16:54:33 -0500
commit9b1de38b60a36d8db4665441238d52ff44298ca7 (patch)
tree57ec77bab903b54ed7a647b4f6076c662bdeb186
parent388b1229b97f06ebfad1bb839a06bbeefe8cc2d1 (diff)
Make Travis build bootstrap daemon again
-rw-r--r--.travis.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index ace69e0d..7641d0c1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,6 +15,14 @@ before_script:
15 - cd .. 15 - cd ..
16 #installing yasm, needed for compiling vpx 16 #installing yasm, needed for compiling vpx
17 - sudo apt-get install yasm > /dev/null 17 - sudo apt-get install yasm > /dev/null
18 #installing libconfig, needed for DHT_bootstrap_daemon
19 - wget http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz > /dev/null
20 - tar -xvzf libconfig-1.4.9.tar.gz > /dev/null
21 - cd libconfig-1.4.9
22 - ./configure > /dev/null
23 - make -j3 > /dev/null
24 - sudo make install > /dev/null
25 - cd ..
18 #installing libopus, needed for audio encoding/decoding 26 #installing libopus, needed for audio encoding/decoding
19 - wget http://downloads.xiph.org/releases/opus/opus-1.0.3.tar.gz > /dev/null 27 - wget http://downloads.xiph.org/releases/opus/opus-1.0.3.tar.gz > /dev/null
20 - tar xzf opus-1.0.3.tar.gz > /dev/null 28 - tar xzf opus-1.0.3.tar.gz > /dev/null
@@ -37,7 +45,7 @@ before_script:
37 45
38script: 46script:
39 - autoreconf -i 47 - autoreconf -i
40 - CFLAGS=-Ofast ./configure 48 - CFLAGS=-Ofast ./configure --enable-daemon
41 - make -j3 49 - make -j3
42 - make check 50 - make check
43 - make dist 51 - make dist