diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-02 18:29:37 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-02 18:29:37 +0200 |
commit | b9e1b4435a406a8a27c078ea05dee1240e51704a (patch) | |
tree | 3bd5e75d001d0c1d57710c47375af5c8ba84c26c /CAN-binder/libs/nanopb/.travis.yml | |
parent | 0242c26c2f5dc96387bca7efb118364c800f4ee7 (diff) |
Added external libraries from openXC CMake files.
Now libraries are cleanly included and built.
Change-Id: Iaa85639578b55b2da8357bc438426403e2cca8de
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/libs/nanopb/.travis.yml')
-rw-r--r-- | CAN-binder/libs/nanopb/.travis.yml | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/CAN-binder/libs/nanopb/.travis.yml b/CAN-binder/libs/nanopb/.travis.yml deleted file mode 100644 index 2e77e7c0..00000000 --- a/CAN-binder/libs/nanopb/.travis.yml +++ /dev/null @@ -1,54 +0,0 @@ -# Travis CI has no ability to handle 3 langauges (c, c++, python) -# and it overrides $CC/$CXX if language is set to c/c++ (only one, not both). -# -# Set language to python since at least the result of that is something useful. -language: python - -python: - - "2.7" - - "3.4" - -# Manage the C/C++ compiler manually -env: - - CC=gcc CXX=g++ - - CC=gcc-4.8 CXX=g++-4.8 - - CC=gcc-4.9 CXX=g++-4.9 - - CC=gcc-5 CXX=g++-5 - - CC=clang CXX=clang++ - -addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - gcc-4.8 - - g++-4.8 - - gcc-4.9 - - g++-4.9 - - gcc-5 - - g++-5 - - -before_install: - - export PATH=$HOME/.local/bin:$HOME/protobuf/bin:$PATH - - export MAKEFLAGS=-j$(grep processor /proc/cpuinfo | wc -l) - - $CC --version - - $CXX --version - - python --version - - lsb_release -a - -# Seems to be issues with concurrent builds -#cache: -# directories: -# - $HOME/protobuf - -install: - - curl -L https://github.com/google/protobuf/releases/download/v3.0.0-beta-1/protobuf-python-3.0.0-alpha-4.tar.gz | tar xzf - - && pushd protobuf-3.0.0-alpha-4 - && ./configure --prefix=$HOME/protobuf && make && make install - && pushd python && python setup.py build && python setup.py install && popd - && popd - -script: - - pushd generator/proto && make && popd - - pushd tests && python2 $(which scons) CC=$CC CXX=$CXX && popd |