https://github.com/carla-simulator/carla
Revision bd36e46b39f0d7e58d19eaaadcfef1f1cabbdddc authored by Corinne on 30 July 2021, 09:20:23 UTC, committed by GitHub on 30 July 2021, 09:20:23 UTC
* Restructured maps docs layout and fixed affected URLs

* Updated RoadRunner map generation doc. Includes link for Leaderboard license

* Updated package ingestion doc so it is located in the main navigation bar. All relative links have been fixed.

* Moved customization information to separate tutorial. Added next steps

* Moved manual preparation of json package to separate tutorial.

* Added how to add traffic light and signs documentation. Updated nav with approriate page name. Cropped photo to show an updated view of UE editor

* Redraft of the weather and landscape tutorial

* Updated tutorial for using the road painter. Typo fix in other tutorials for map customization

* Added tutorial to add levels to maps

* Added images for maps tutorials

* Minor syntax changes to manual package prep

* Full drafts of map documentation

* Added images and corrected names for building shaders

* [NO_BUILD] First draft of Large Maps docs (#4396)

* Drafting large map docs

* Changed name of spawn_npc script

* Syntax changes

* Corrected hybrid mode dormant behavior, added code for setting ego vehicle, removed expensive note about map calls

* Added section for roadrunner large maps

* Added images to roadrunner docs and rearranged nav bar and titles.

* Added corrections to import of large maps and standard map nomenclature

Co-authored-by: bernat <bernatx@gmail.com>

* Made corrections to spawn points and additional fbx folder information

* Fixed mentions of normal maps to standard maps

Co-authored-by: bernat <bernatx@gmail.com>
1 parent d1debd9
Raw File
Tip revision: bd36e46b39f0d7e58d19eaaadcfef1f1cabbdddc authored by Corinne on 30 July 2021, 09:20:23 UTC
Corkyw10/maps documentation (#4233)
Tip revision: bd36e46
.travis.yml
language: cpp
compiler: clang

os: linux
dist: xenial
sudo: false

matrix:
  include:

    - env: TEST="Unit Tests"
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
            - llvm-toolchain-xenial-8
          packages:
            - g++-7 # we need this one for the libstdc++.
            - clang-8
            - ninja-build
            - python
            - python-pip
            - python3
            - python3-pip
            - libboost-python-dev
            - libtiff5-dev
            - libjpeg-dev
      install:
        - pip2 install -q --user setuptools
        - pip2 install -q --user -r PythonAPI/test/requirements.txt
        - pip2 install -q --user -r PythonAPI/carla/requirements.txt
        - pip3 install -q --user setuptools
        - pip3 install -q --user -r PythonAPI/test/requirements.txt
        - pip3 install -q --user -r PythonAPI/carla/requirements.txt
      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
        - make examples >> 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 pylint
        - pip2 install -q --user -r PythonAPI/carla/requirements.txt
        - pip2 install -q --user -r PythonAPI/examples/requirements.txt
        - pip2 install -q --user -r PythonAPI/test/requirements.txt
        - pip2 install -q --user -r PythonAPI/util/requirements.txt
      script:
        - shopt -s globstar
        - pylint --disable=R,C --rcfile=PythonAPI/.pylintrc PythonAPI/**/*.py Util/BuildTools/*.py

    - env: TEST="Pylint 3"
      addons:
        apt:
          packages:
            - python3
            - python3-pip
      install:
        - pip3 install -q --user setuptools
        - pip3 install -q astroid==2.2.5 pylint==2.3.1
        - pip3 install -q --user -r PythonAPI/carla/requirements.txt
        - pip3 install -q --user -r PythonAPI/examples/requirements.txt
        - pip3 install -q --user -r PythonAPI/test/requirements.txt
        - pip3 install -q --user -r PythonAPI/util/requirements.txt
        - pip3 install -q --user -r Util/Docker/requirements.txt
      script:
        - shopt -s globstar
        - pylint --disable=R,C --rcfile=PythonAPI/.pylintrc PythonAPI/**/*.py Util/Docker/*.py Util/BuildTools/*.py

    - env: TEST="MkDocs"
      install:
        - pip install -q --user -r PythonAPI/docs/requirements.txt
        - pip install -q --user mkdocs
      script:
        - make PythonAPI.docs
        - git diff --quiet HEAD --; if [ ! $? -eq 0 ]; then echo "Python API reference changed, forgot to run \"make PythonAPI.docs\"?"; exit 1; fi
        - mkdocs build --verbose --clean --strict --site-dir _site

notifications:
  email: false
back to top