mirror of
https://github.com/eggman/rtl_ameba_gcc_sample.git
synced 2024-10-31 19:34:14 +00:00
46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
|
|
language: c
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- os: linux
|
|
sudo: false
|
|
env: GCC_VER=4.8
|
|
- os: linux
|
|
sudo: false
|
|
env: GCC_VER=4.9
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- build-essential
|
|
|
|
before_install:
|
|
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
|
|
pushd .
|
|
&& cd ~ && mkdir gcc && cd gcc
|
|
&& if [ "$GCC_VER" = "4.8" ]; then GCC_URL="https://launchpadlibrarian.net/186124160/gcc-arm-none-eabi-4_8-2014q3-20140805-linux.tar.bz2" ; fi
|
|
&& if [ "$GCC_VER" = "4.9" ]; then GCC_URL="https://launchpad.net/gcc-arm-embedded/4.9/4.9-2014-q4-major/+download/gcc-arm-none-eabi-4_9-2014q4-20141203-linux.tar.bz2" ; fi
|
|
&& wget -O gcc.tar.bz2 ${GCC_URL}
|
|
&& tar -jxf gcc.tar.bz2 --strip 1
|
|
&& exportline="export PATH=\$HOME/gcc/bin:\$PATH"
|
|
&& if grep -Fxq "$exportline" ~/.profile; then echo nothing to do ; else echo $exportline >> ~/.profile; fi
|
|
&& . ~/.profile
|
|
&& printenv PATH
|
|
&& popd
|
|
;
|
|
fi
|
|
|
|
install:
|
|
- export PATH=$PATH:$PWD/gcc/bin
|
|
- printenv PATH
|
|
|
|
before_script:
|
|
- arm-none-eabi-gcc --version
|
|
|
|
script:
|
|
- make
|
|
|