diff options
| author | Carlos <carlos.santiago.diaz@gmail.com> | 2019-07-20 01:08:22 -0500 |
|---|---|---|
| committer | Carlos <carlos.santiago.diaz@gmail.com> | 2019-07-20 01:08:22 -0500 |
| commit | d1fecf5025958ac4c2447a3757ab03a0bfdebdbf (patch) | |
| tree | 6712513a1028eea4a7992a64bad9010f9634605a /.travis.yml | |
| parent | 06cb075025c70647155e2db7cc3f2d825840d4b6 (diff) | |
Fix missing module sh and remove unused module re
Diffstat (limited to '.travis.yml')
| -rwxr-xr-x | .travis.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 528582eae..ce7cba944 100755 --- a/.travis.yml +++ b/.travis.yml @@ -71,10 +71,6 @@ before_script: - function var_search () { case "$1" in *$2*) true;; *) false;; esac; } - sudo dpkg --add-architecture i386 - # Check if there's any board missing in TRAVIS_BOARDS - - cd tools && python3 -u travis_new_boards_check.py - - cd .. - - (! var_search "${TRAVIS_SDK-}" arm || (wget https://s3.amazonaws.com/adafruit-circuit-python/gcc-arm-embedded_7-2018q2-1~xenial1_amd64.deb && sudo dpkg -i gcc-arm-embedded*_amd64.deb)) # For huzzah builds @@ -89,6 +85,10 @@ before_script: - (! var_search "${TRAVIS_TESTS-}" docs || pip install --user Sphinx sphinx-rtd-theme recommonmark sphinxcontrib-svg2pdfconverter) - (! var_search "${TRAVIS_TESTS-}" translations || pip3 install --user polib) + # Check if there's any board missing in TRAVIS_BOARDS + - cd tools && python3 -u travis_new_boards_check.py + - cd .. + # report some good version numbers to the build - gcc --version - (! var_search "${TRAVIS_SDK-}" arm || arm-none-eabi-gcc --version) |
