build: try installing toolchain from develop developer.arm.com

This commit is contained in:
Pavol Rusnak 2017-10-04 17:14:32 +02:00
parent b962ace27d
commit dfadfbe857
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
1 changed files with 5 additions and 2 deletions

View File

@ -23,8 +23,6 @@ addons:
packages: packages:
- build-essential - build-essential
- gcc-multilib - gcc-multilib
- gcc-arm-none-eabi
- libnewlib-arm-none-eabi
- libusb-1.0-0-dev - libusb-1.0-0-dev
- libudev-dev - libudev-dev
- python3 - python3
@ -41,6 +39,11 @@ install:
- pip3 install --user ecdsa mnemonic protobuf requests - pip3 install --user ecdsa mnemonic protobuf requests
- pip3 install --user git+https://github.com/trezor/python-trezor@master - pip3 install --user git+https://github.com/trezor/python-trezor@master
before_script:
- test "$GOAL" != "stm32" || wget https://developer.arm.com/-/media/Files/downloads/gnu-rm/6-2017q2/gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2
- test "$GOAL" != "stm32" || tar xfj gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2
- test "$GOAL" != "stm32" || export PATH=$PATH:$PWD/gcc-arm-none-eabi-6-2017-q2-update/bin
script: script:
- test "$GOAL" != "stm32" || make vendorheader - test "$GOAL" != "stm32" || make vendorheader
- test "$GOAL" != "stm32" || make build_cross - test "$GOAL" != "stm32" || make build_cross