mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Make Travis build bootstrap daemon again
This commit is contained in:
parent
388b1229b9
commit
9b1de38b60
10
.travis.yml
10
.travis.yml
|
@ -15,6 +15,14 @@ before_script:
|
|||
- cd ..
|
||||
#installing yasm, needed for compiling vpx
|
||||
- sudo apt-get install yasm > /dev/null
|
||||
#installing libconfig, needed for DHT_bootstrap_daemon
|
||||
- wget http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz > /dev/null
|
||||
- tar -xvzf libconfig-1.4.9.tar.gz > /dev/null
|
||||
- cd libconfig-1.4.9
|
||||
- ./configure > /dev/null
|
||||
- make -j3 > /dev/null
|
||||
- sudo make install > /dev/null
|
||||
- cd ..
|
||||
#installing libopus, needed for audio encoding/decoding
|
||||
- wget http://downloads.xiph.org/releases/opus/opus-1.0.3.tar.gz > /dev/null
|
||||
- tar xzf opus-1.0.3.tar.gz > /dev/null
|
||||
|
@ -37,7 +45,7 @@ before_script:
|
|||
|
||||
script:
|
||||
- autoreconf -i
|
||||
- CFLAGS=-Ofast ./configure
|
||||
- CFLAGS=-Ofast ./configure --enable-daemon
|
||||
- make -j3
|
||||
- make check
|
||||
- make dist
|
||||
|
|
Loading…
Reference in New Issue
Block a user