protobuf-c/.travis.yml

21 lines
468 B
YAML
Raw Normal View History

2013-11-17 23:58:13 -08:00
language: c
before_install:
- sudo apt-get update -qq
install:
# Install protobuf-2.5.0
- wget http://protobuf.googlecode.com/files/protobuf-2.5.0.tar.gz
- tar -xzvf protobuf-2.5.0.tar.gz
- cd protobuf-2.5.0 && ./configure
- make -j8
- sudo make install && sudo ldconfig
- cd ../
script:
- ./autogen.sh
- ./configure
- make -j8
- make check
- sudo make install