forked from silver13/H8mini_blue_board
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (31 loc) · 881 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# travis build configuration
env:
#Do not define 'global' env vars here. They cannot be used with API builds
matrix:
- TARGET=all
language: cpp
#sudo: required
sudo: false
addons:
apt:
packages:
libc6-i386
cache:
directories:
- $HOME/gcc-arm-none-eabi-5_4-2016q3
install:
- export GCC_DIR=$HOME/gcc-arm-none-eabi-5_4-2016q3
- export GCC_ARCHIVE=$HOME/gcc-arm-none-eabi-5_4-2016q3-20160926-linux.tar.bz2
- export GCC_URL=https://launchpad.net/gcc-arm-embedded/5.0/5-2016-q3-update/+download/gcc-arm-none-eabi-5_4-2016q3-20160926-linux.tar.bz2
- if [ ! -e $GCC_DIR/bin/arm-none-eabi-gcc ];then
wget $GCC_URL -O $GCC_ARCHIVE;
tar xfj $GCC_ARCHIVE -C $HOME;
fi
- export PATH=$PATH:$GCC_DIR/bin
script:
- ls
- cd gcc
- make $TARGET
- make clean
- make $TARGET
- arm-none-eabi-size h8mini.elf