We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 45d04bc + 4c51f3a commit 6d374c6Copy full SHA for 6d374c6
.travis.yml
@@ -30,7 +30,8 @@ before_install:
30
- sudo ln -s $HOME/.cache/apt /var/cache/apt/archives
31
# Setup ppa to make sure arm-none-eabi-gcc is correct version
32
- sudo add-apt-repository -y ppa:team-gcc-arm-embedded/ppa
33
- - sudo apt-get update -qq
+ # Loop until update succeeds (timeouts can occur)
34
+ - while [ -n "$(sudo apt-get update 2>&1 |grep Failed)" ]; do :; done
35
36
after_success:
37
- bash -c "$STATUS" success "Local $NAME testing has passed"
0 commit comments