From 861f5b672550d91129f5db8acad3c4a08bc6e66b Mon Sep 17 00:00:00 2001 From: Pierre Hugo Date: Fri, 23 Jan 2015 16:26:56 -0800 Subject: [PATCH] Switched to using cpp as the default language and specifying arm in the makefile. --- .travis.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index c63522aa43..1c108bf808 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,14 +11,15 @@ env: - TARGET=SPARKY - TARGET=STM32F3DISCOVERY - TARGET=ALIENWIIF1 -language: c -compiler: arm-none-eabi-gcc +# We use cpp for unit tests, and c for the main project. +language: cpp +compiler: clang before_install: sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded && sudo apt-get update install: sudo apt-get install build-essential gcc-arm-none-eabi git -before_script: $CC --version +before_script: arm-none-eabi-gcc --version script: make -j2 notifications: irc: "chat.freenode.net#cleanflight" use_notice: true - skip_join: true \ No newline at end of file + skip_join: true