diff options
| author | C47D <carlos.santiago.diaz@gmail.com> | 2019-07-19 18:19:17 -0500 |
|---|---|---|
| committer | C47D <carlos.santiago.diaz@gmail.com> | 2019-07-19 18:19:17 -0500 |
| commit | 06cb075025c70647155e2db7cc3f2d825840d4b6 (patch) | |
| tree | 43075656301ff138455eaa32144f6ba4255135bd | |
| parent | 00d91bed32ef55ce543af4da51b3aaf68fca50e9 (diff) | |
[travis check new boards] Move script into the before_script section
| -rwxr-xr-x | .travis.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 32511a21d..528582eae 100755 --- a/.travis.yml +++ b/.travis.yml @@ -71,6 +71,9 @@ 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)) @@ -103,10 +106,6 @@ script: - cd tools && python3 -u build_release_files.py - cd .. - # Check if there's any board missing in TRAVIS_BOARDS - - cd tools && python3 -u travis_new_boards_check.py - - cd .. - - echo 'Building unix' && echo 'travis_fold:start:unix' - (! var_search "${TRAVIS_TESTS-}" unix || (make -C ports/unix deplibs -j2 && make -C ports/unix -j2 && make -C ports/unix coverage -j2)) ; S=$? ; echo $S > status ; (exit $S) - echo 'travis_fold:end:unix' && tools/print_status.py status |
