This repository was archived by the owner on Apr 13, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ sudo: false
5
5
# https://gist.github.com/winterz/10cc2741d466cbd8ff21
6
6
# https://github.com/travis-ci/travis-ci/issues/2030
7
7
8
+ os :
9
+ - linux
10
+ - osx
11
+
8
12
cache : pip
9
13
10
14
addons :
@@ -32,9 +36,9 @@ install:
32
36
- export LD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/build/install/usr/local/lib
33
37
# Install ARM GCC toolchain
34
38
# TODO: Replace with PPA once whitelisted, see https://github.com/travis-ci/apt-source-whitelist/pull/219
35
- - wget https://launchpad.net/gcc-arm-embedded/4.9/4.9-2015-q2-update/+download/gcc-arm-none-eabi-4_9-2015q2-20150609-linux.tar.bz2
36
- - tar -xf gcc-arm-none-eabi-4_9-2015q2-20150609-linux.tar.bz2
37
- - export PATH=$PATH:$PWD/gcc-arm-none-eabi-4_9-2015q2/bin
39
+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]] ; wget https://launchpad.net/gcc-arm-embedded/4.9/4.9-2015-q2-update/+download/gcc-arm-none-eabi-4_9-2015q2-20150609-linux.tar.bz2 ; fi
40
+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]] ; tar -xf gcc-arm-none-eabi-4_9-2015q2-20150609-linux.tar.bz2 ; fi
41
+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]] ; export PATH=$PATH:$PWD/gcc-arm-none-eabi-4_9-2015q2/bin ; fi
38
42
# Install doxygen 1.8
39
43
# TODO: Replace with PPA once whitelisted, see https://github.com/travis-ci/apt-source-whitelist/issues/40
40
44
You can’t perform that action at this time.
0 commit comments