mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-27 22:01:02 +08:00
21 lines
468 B
YAML
21 lines
468 B
YAML
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
|