blob: a7230a03757a2c9d4723fab61697b13c027063ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
language: c
addons:
apt:
sourceline: 'ppa:team-gcc-arm-embedded/ppa'
packages:
- gcc-avr
- avr-libc
- wget
env:
- TARGET=atmega2560-16mhz
- TARGET=atmega328-16mhz
# - TARGET=beaglebone needs pru-gcc (not out of the box available on Ubuntu)
- TARGET=hostsimulator
- TARGET=linuxprocess
- TARGET=sam3x8e GCC_SRC=https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2017q4/gcc-arm-none-eabi-7-2017-q4-major-linux.tar.bz2 GCC_DIR=gcc-arm-none-eabi-7-2017-q4-major
script: ./test/travis-build.sh
|