https://github.com/carla-simulator/carla
Raw File
Tip revision: b11bfcfdb196ea51900734ddc8e94302a23b7b68 authored by germanros1987 on 16 December 2018, 07:28:20 UTC
Update how_to_make_a_new_map.md
Tip revision: b11bfcf
.travis.yml
language: cpp
compiler: clang

os: linux
dist: trusty
sudo: false

matrix:
  include:

    - env: TEST="Unit Tests"
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
            - llvm-toolchain-trusty-5.0
          packages:
            - g++-7 # we need this one for the libstdc++.
            - clang-5.0
            - ninja-build
            - python
            - python-pip
            - python3
            - python3-pip
            - libboost-python-dev
            - libtiff5-dev
            - libjpeg-dev
      install:
        - pip2 install -q --user setuptools nose2
        - pip3 install -q --user setuptools nose2
      script:
        - while sleep 2m; do echo "still building..."; done &
        - make setup >> build.log 2>&1
        - make LibCarla >> build.log 2>&1
        - make PythonAPI >> build.log 2>&1
        - kill %1
        - make check ARGS="--all --gtest_args=--gtest_filter=-*_mt"
      after_failure:
        - tail --lines=2000 build.log

    - env: TEST="Pylint 2"
      addons:
        apt:
          packages:
            - python
            - python-pip
      install:
        - pip2 install -q --user -r Deprecated/PythonClient/requirements.txt
        - pip2 install -q --user pylint
      script:
        - pylint --disable=R,C --rcfile=Deprecated/PythonClient/.pylintrc Deprecated/PythonClient/carla Deprecated/PythonClient/*.py

    - env: TEST="MkDocs"
      install:
        - pip install -q --user mkdocs
      script:
        - mkdocs build --verbose --clean --strict --site-dir _site

notifications:
  email: false
back to top