forked from riot-appstore/PHiLIP
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request riot-appstore#38 from MrKevinWeiss/pr/addinterface
feature(interface): Updates protocol and adds an interface/shell wrapper
- Loading branch information
Showing
62 changed files
with
8,865 additions
and
900 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,42 @@ | ||
# travis build configuration for stm32plus | ||
# travis build configuration for philip | ||
matrix: | ||
include: | ||
- language: python | ||
python: | ||
- "3.5" | ||
- "3.6" | ||
|
||
language: c | ||
sudo: false | ||
install: | ||
- "pip install flake8" | ||
script: | ||
- flake8 | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- libc6-i386 | ||
- doxygen | ||
- language: c | ||
sudo: false | ||
|
||
cache: | ||
directories: | ||
- $HOME/gcc-arm-none-eabi-7-2017-q4-major | ||
addons: | ||
apt: | ||
packages: | ||
- libc6-i386 | ||
- doxygen | ||
|
||
install: | ||
- export GCC_DIR=$HOME/gcc-arm-none-eabi-7-2017-q4-major | ||
- export GCC_ARCHIVE=$HOME/gcc-arm-none-eabi-7-2017-q4-major-linux.tar.bz2 | ||
- export GCC_URL=https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2017q4/gcc-arm-none-eabi-7-2017-q4-major-linux.tar.bz2?revision=375265d4-e9b5-41c8-bf23-56cbe927e156?product=GNU%20Arm%20Embedded%20Toolchain,64-bit,,Linux,7-2017-q4-major | ||
- 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 | ||
cache: | ||
directories: | ||
- $HOME/gcc-arm-none-eabi-7-2017-q4-major | ||
|
||
script: | ||
- cd FW | ||
- make | ||
- make clean | ||
- BOARD=BLUEPILL make | ||
- BOARD=BLUEPILL make clean | ||
- BOARD=NUCLEOF103RB make | ||
- BOARD=NUCLEOF103RB make clean | ||
- make doc | ||
install: | ||
- export GCC_DIR=$HOME/gcc-arm-none-eabi-7-2017-q4-major | ||
- export GCC_ARCHIVE=$HOME/gcc-arm-none-eabi-7-2017-q4-major-linux.tar.bz2 | ||
- export GCC_URL=https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2017q4/gcc-arm-none-eabi-7-2017-q4-major-linux.tar.bz2?revision=375265d4-e9b5-41c8-bf23-56cbe927e156?product=GNU%20Arm%20Embedded%20Toolchain,64-bit,,Linux,7-2017-q4-major | ||
- 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: | ||
- cd FW | ||
- make | ||
- make clean | ||
- BOARD=BLUEPILL make | ||
- BOARD=BLUEPILL make clean | ||
- BOARD=NUCLEOF103RB make | ||
- BOARD=NUCLEOF103RB make clean | ||
- make doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.