You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
755 B

language: c
compiler: gcc
9 years ago
install:
- uname -a
- sudo apt-get update -qq
9 years ago
- sudo apt-get install -qq cmake gcc-multilib libc6:i386 libgcc1:i386
- wget https://launchpad.net/gcc-arm-embedded/4.9/4.9-2015-q3-update/+download/gcc-arm-none-eabi-4_9-2015q3-20150921-linux.tar.bz2
- bzip2 -d gcc-arm-none-eabi-4_9-2015q3-20150921-linux.tar.bz2
- tar xfv gcc-arm-none-eabi-4_9-2015q3-20150921-linux.tar
script:
9 years ago
- export PATH=$PWD/gcc-arm-none-eabi-4_9-2015q3/bin:$PATH
- gcc --version
- make generic
- cd build_generic && make -j`nproc`
- cd ..
9 years ago
- arm-none-eabi-gcc --version
- make cortex-m4
- cd build_cortex-m4 && make -j`nproc`
9 years ago
- cd ..
notifications:
on_success: change
on_failure: always