Skip to content

Commit 0def456

Browse files
Merge pull request #1252 from iNavFlight/development
Release INAV-1.6
2 parents c50cb55 + 2e4ad66 commit 0def456

File tree

362 files changed

+21928
-10155
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

362 files changed

+21928
-10155
lines changed

.travis.sh

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ elif [ $TARGET ] ; then
6363
else
6464
make -j2 $MAKEFILE
6565
fi
66+
elif [ $GOAL ] ; then
67+
make V=0 $GOAL
6668
else
6769
# No target specified, build all with very low verbosity.
6870
make V=0 all

.travis.yml

+13-15
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
11
env:
2+
# Specify the main Mafile supported goals.
3+
- GOAL=test
4+
- GOAL=all
25
# - TARGET=CC3D
3-
# - TARGET=CJMCU
4-
# - TARGET=NAZE
5-
# - TARGET=STM32F3DISCOVERY
6-
# - TARGET=RMDO
7-
# - TARGET=SPRACINGF3
8-
# - TARGET=SPRACINGF3EVO
9-
# - TARGET=SPARKY
10-
# - TARGET=FURYF3
11-
# - TARGET=RCEXPLORERF3
12-
# - TARGET=REVO
13-
6+
147
# use new docker environment
158
sudo: false
169

@@ -28,18 +21,23 @@ addons:
2821
language: cpp
2922
compiler: clang
3023

31-
before_install: ./install-toolchain.sh
24+
before_install:
3225

3326
install:
34-
- export PATH=$PATH:$PWD/gcc-arm-none-eabi-5_4-2016q2/bin
27+
- ./install-toolchain.sh
28+
- export TOOLCHAINPATH=$PWD/gcc-arm-none-eabi-6_2-2016q4/bin
29+
30+
before_script:
31+
- $TOOLCHAINPATH/arm-none-eabi-gcc --version
32+
- clang --version
33+
- clang++ --version
3534

36-
before_script: arm-none-eabi-gcc --version
3735
script: ./.travis.sh
3836

3937
cache:
4038
apt: true
4139
directories:
42-
- $PWD/gcc-arm-none-eabi-5_4-2016q2
40+
- $PWD/gcc-arm-none-eabi-6_2-2016q4
4341

4442
notifications:
4543
#slack: inavflight:UWRoWFJ4cbbpHXT8HJJlAPXa

0 commit comments

Comments
 (0)