2018-09-22 14:36:35 +00:00
|
|
|
env:
|
|
|
|
global:
|
2019-07-18 16:05:40 +00:00
|
|
|
- ARDUINO_IDE_VERSION="1.8.9"
|
2018-09-22 14:36:35 +00:00
|
|
|
matrix:
|
2019-09-10 16:48:51 +00:00
|
|
|
# see https://github.com/arduino/Arduino/blob/master/build/shared/manpage.adoc#options
|
2019-09-10 17:41:12 +00:00
|
|
|
# and https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5-3rd-party-Hardware-specification#boardstxt
|
2020-04-15 07:47:18 +00:00
|
|
|
- BOARD="arduino:avr:uno"
|
|
|
|
- BOARD="arduino:avr:mega:cpu=atmega2560"
|
|
|
|
- BOARD="arduino:avr:leonardo"
|
|
|
|
- BOARD="esp8266:esp8266:generic:xtal=80,ResetMethod=ck,CrystalFreq=26,FlashFreq=40,FlashMode=qio,eesz=512K"
|
2019-09-09 07:18:38 +00:00
|
|
|
- BOARD="esp32:esp32:esp32"
|
2019-11-19 17:28:38 +00:00
|
|
|
- BOARD="STM32:stm32:GenF3:pnum=BLACKPILL_F303CC"
|
2019-09-10 16:48:51 +00:00
|
|
|
- BOARD="arduino:samd:arduino_zero_native"
|
2019-10-27 16:18:37 +00:00
|
|
|
- BOARD="arduino:sam:arduino_due_x"
|
2020-04-15 08:48:59 +00:00
|
|
|
- BOARD="adafruit:nrf52:feather52832:softdevice=s132v6,debug=l0"
|
2020-04-15 08:01:39 +00:00
|
|
|
- BOARD="Intel:arc32:arduino_101"
|
2020-04-15 08:48:59 +00:00
|
|
|
- BOARD="arduino:megaavr:uno2018:mode=on"
|
2020-04-15 08:01:39 +00:00
|
|
|
- BOARD="SparkFun:apollo3:amap3redboard"
|
|
|
|
- BOARD="arduino:mbed:nano33ble"
|
2020-04-22 14:02:14 +00:00
|
|
|
- BOARD="stm32duino:STM32F1:mapleMini:bootloader_version=original,cpu_speed=speed_72mhz"
|
2020-05-12 06:42:10 +00:00
|
|
|
- BOARD="adafruit:samd:adafruit_feather_m0:usbstack=arduino,debug=off"
|
2020-06-30 09:17:50 +00:00
|
|
|
- BOARD="arduino-beta:mbed:envie_m4"
|
2019-05-24 13:13:04 +00:00
|
|
|
|
2020-04-15 09:38:20 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
2020-04-22 13:00:44 +00:00
|
|
|
# required for Adafruit nRF52 (adafruit-nrfutil package)
|
2020-04-15 09:38:20 +00:00
|
|
|
- python3
|
|
|
|
- python3-pip
|
|
|
|
- python3-setuptools
|
|
|
|
|
2018-09-22 14:36:35 +00:00
|
|
|
before_install:
|
|
|
|
# install Arduino IDE
|
2019-07-18 16:05:40 +00:00
|
|
|
- wget https://downloads.arduino.cc/arduino-$ARDUINO_IDE_VERSION-linux64.tar.xz
|
2018-09-22 14:36:35 +00:00
|
|
|
- tar xf arduino-$ARDUINO_IDE_VERSION-linux64.tar.xz
|
|
|
|
- mv arduino-$ARDUINO_IDE_VERSION $HOME/arduino-ide
|
|
|
|
- export PATH=$PATH:$HOME/arduino-ide
|
2019-07-31 05:25:04 +00:00
|
|
|
|
2019-07-18 16:05:40 +00:00
|
|
|
# firewall Arduino IDE noise (https://github.com/per1234/arduino-ci-script/issues/1#issuecomment-504158113)
|
|
|
|
- sudo iptables -P INPUT DROP
|
|
|
|
- sudo iptables -P FORWARD DROP
|
|
|
|
- sudo iptables -P OUTPUT ACCEPT
|
|
|
|
- sudo iptables -A INPUT -i lo -j ACCEPT
|
|
|
|
- sudo iptables -A OUTPUT -o lo -j ACCEPT
|
|
|
|
- sudo iptables -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
|
2019-05-24 13:13:04 +00:00
|
|
|
|
2020-04-15 08:01:39 +00:00
|
|
|
# check every board in matrix and install 3rd party definitions
|
2020-04-15 07:29:05 +00:00
|
|
|
- if [[ "$BOARD" =~ "arduino:avr:uno" ]]; then
|
2020-04-15 07:32:39 +00:00
|
|
|
export BUILD_EXAMPLES=true;
|
2020-04-15 08:01:39 +00:00
|
|
|
|
2020-04-15 07:29:05 +00:00
|
|
|
elif [[ "$BOARD" =~ "arduino:avr:mega" ]]; then
|
2020-04-15 07:36:29 +00:00
|
|
|
export BUILD_EXAMPLES=false;
|
2020-04-15 08:01:39 +00:00
|
|
|
|
2020-04-15 07:29:05 +00:00
|
|
|
elif [[ "$BOARD" =~ "arduino:avr:leonardo" ]]; then
|
2020-04-15 07:36:29 +00:00
|
|
|
export BUILD_EXAMPLES=false;
|
2020-04-15 08:01:39 +00:00
|
|
|
|
2020-04-15 07:29:05 +00:00
|
|
|
elif [[ "$BOARD" =~ "esp8266:esp8266:" ]]; then
|
2020-04-15 07:36:29 +00:00
|
|
|
export BUILD_EXAMPLES=false;
|
2020-04-15 07:39:34 +00:00
|
|
|
arduino --pref "boardsmanager.additional.urls=http://arduino.esp8266.com/stable/package_esp8266com_index.json" --save-prefs 2>&1;
|
2019-07-31 05:25:04 +00:00
|
|
|
arduino --install-boards esp8266:esp8266;
|
2019-07-31 08:02:45 +00:00
|
|
|
export SKIP_PAT='(HTTP|MQTT).*ino';
|
2020-04-15 08:01:39 +00:00
|
|
|
|
2019-09-09 07:18:38 +00:00
|
|
|
elif [[ "$BOARD" =~ "esp32:esp32:" ]]; then
|
2020-04-15 07:36:29 +00:00
|
|
|
export BUILD_EXAMPLES=false;
|
2020-04-15 07:39:34 +00:00
|
|
|
arduino --pref "boardsmanager.additional.urls=https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json" --save-prefs 2>&1;
|
2019-09-09 07:18:38 +00:00
|
|
|
arduino --install-boards esp32:esp32;
|
2020-04-15 08:01:39 +00:00
|
|
|
|
2019-09-10 17:41:12 +00:00
|
|
|
elif [[ "$BOARD" =~ "STM32:stm32:" ]]; then
|
2020-04-15 07:36:29 +00:00
|
|
|
export BUILD_EXAMPLES=false;
|
2020-04-15 07:42:55 +00:00
|
|
|
arduino --pref "boardsmanager.additional.urls=https://github.com/stm32duino/BoardManagerFiles/raw/master/STM32/package_stm_index.json" --save-prefs 2>&1;
|
2019-09-10 17:41:12 +00:00
|
|
|
arduino --install-boards STM32:stm32;
|
2020-04-15 08:01:39 +00:00
|
|
|
|
2019-09-10 16:48:51 +00:00
|
|
|
elif [[ "$BOARD" =~ "arduino:samd:" ]]; then
|
2020-04-15 07:36:29 +00:00
|
|
|
export BUILD_EXAMPLES=false;
|
2019-09-10 16:48:51 +00:00
|
|
|
arduino --install-boards arduino:samd;
|
2020-04-15 08:01:39 +00:00
|
|
|
|
2019-10-27 16:18:37 +00:00
|
|
|
elif [[ "$BOARD" =~ "arduino:sam:" ]]; then
|
2020-04-15 07:36:29 +00:00
|
|
|
export BUILD_EXAMPLES=false;
|
2019-10-27 16:18:37 +00:00
|
|
|
arduino --install-boards arduino:sam;
|
2020-04-15 08:01:39 +00:00
|
|
|
|
|
|
|
elif [[ "$BOARD" =~ "adafruit:nrf52:" ]]; then
|
2020-04-15 10:25:39 +00:00
|
|
|
pip3 install --user adafruit-nrfutil;
|
2020-04-15 08:01:39 +00:00
|
|
|
export BUILD_EXAMPLES=false;
|
|
|
|
arduino --pref "boardsmanager.additional.urls=https://www.adafruit.com/package_adafruit_index.json" --save-prefs 2>&1;
|
|
|
|
arduino --install-boards adafruit:nrf52;
|
|
|
|
|
|
|
|
elif [[ "$BOARD" =~ "Intel:arc32:" ]]; then
|
|
|
|
export BUILD_EXAMPLES=false;
|
|
|
|
arduino --install-boards Intel:arc32;
|
|
|
|
|
|
|
|
elif [[ "$BOARD" =~ "arduino:megaavr:" ]]; then
|
|
|
|
export BUILD_EXAMPLES=false;
|
|
|
|
arduino --install-boards arduino:megaavr;
|
|
|
|
|
2019-12-24 09:02:17 +00:00
|
|
|
elif [[ "$BOARD" =~ "SparkFun:apollo3:" ]]; then
|
2020-04-15 07:36:29 +00:00
|
|
|
export BUILD_EXAMPLES=false;
|
2020-04-15 07:39:34 +00:00
|
|
|
arduino --pref "boardsmanager.additional.urls=https://raw.githubusercontent.com/sparkfun/Arduino_Boards/master/IDE_Board_Manager/package_sparkfun_index.json" --save-prefs 2>&1;
|
2019-12-24 09:02:17 +00:00
|
|
|
arduino --install-boards SparkFun:apollo3;
|
2020-04-15 08:01:39 +00:00
|
|
|
|
|
|
|
elif [[ "$BOARD" =~ "arduino:mbed:" ]]; then
|
|
|
|
export BUILD_EXAMPLES=false;
|
|
|
|
arduino --install-boards arduino:mbed;
|
2020-04-15 08:48:59 +00:00
|
|
|
export SKIP_PAT='(HTTP|MQTT).*ino';
|
2020-04-15 08:01:39 +00:00
|
|
|
|
2020-04-22 13:00:44 +00:00
|
|
|
elif [[ "$BOARD" =~ "stm32duino:STM32F1:" ]]; then
|
|
|
|
export BUILD_EXAMPLES=false;
|
|
|
|
arduino --pref "boardsmanager.additional.urls=http://dan.drown.org/stm32duino/package_STM32duino_index.json" --save-prefs 2>&1;
|
|
|
|
arduino --install-boards stm32duino:STM32F1;
|
|
|
|
|
2020-05-12 06:42:10 +00:00
|
|
|
elif [[ "$BOARD" =~ "adafruit:samd:" ]]; then
|
2020-05-12 06:57:38 +00:00
|
|
|
export BUILD_EXAMPLES=false;
|
2020-05-12 06:42:10 +00:00
|
|
|
arduino --pref "boardsmanager.additional.urls=https://www.adafruit.com/package_adafruit_index.json" --save-prefs 2>&1;
|
|
|
|
arduino --install-boards adafruit:samd;
|
|
|
|
|
2020-06-30 08:53:22 +00:00
|
|
|
elif [[ "$BOARD" =~ "arduino-beta:mbed:" ]]; then
|
|
|
|
export BUILD_EXAMPLES=false;
|
|
|
|
arduino --install-boards arduino-beta:mbed;
|
|
|
|
export SKIP_PAT='(HTTP|MQTT).*ino';
|
|
|
|
|
2019-07-31 05:25:04 +00:00
|
|
|
fi
|
|
|
|
|
2020-04-15 07:29:05 +00:00
|
|
|
# check if this release commit (or forced build) and if so, build for every board
|
2020-04-15 07:36:29 +00:00
|
|
|
- if [[ "$TRAVIS_COMMIT_MESSAGE" =~ "Bump version to" || "$TRAVIS_COMMIT_MESSAGE" =~ "TRAVIS_FORCE_BUILD" ]]; then
|
2020-04-15 07:32:39 +00:00
|
|
|
export BUILD_EXAMPLES=true;
|
2020-04-15 07:29:05 +00:00
|
|
|
fi
|
|
|
|
|
2019-05-24 13:13:04 +00:00
|
|
|
# create directory to save the library and create symbolic link
|
2018-09-22 14:36:35 +00:00
|
|
|
install:
|
|
|
|
- mkdir -p $HOME/Arduino/libraries
|
2019-02-08 14:58:29 +00:00
|
|
|
- ln -s $PWD $HOME/Arduino/libraries/RadioLib
|
2019-05-24 13:13:04 +00:00
|
|
|
|
|
|
|
# only build the master branch
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
2018-09-22 14:36:35 +00:00
|
|
|
script:
|
|
|
|
# build all example sketches
|
2019-07-31 08:19:10 +00:00
|
|
|
- |
|
2020-04-15 07:36:29 +00:00
|
|
|
if [ ! -z "$BUILD_EXAMPLES" ] && [ "$BUILD_EXAMPLES" = true ] ; then
|
2020-04-15 07:29:05 +00:00
|
|
|
for example in $(find $PWD/examples -name '*.ino' | sort); do
|
|
|
|
# check whether to skip this sketch
|
|
|
|
if [ ! -z "$SKIP_PAT" ] && [[ ${example} =~ $SKIP_PAT ]]; then
|
|
|
|
# skip sketch
|
|
|
|
echo -e "\n\033[1;33mSkipped ${example##*/} (matched with $SKIP_PAT)\033[0m";
|
2019-07-31 07:38:04 +00:00
|
|
|
else
|
2020-04-15 07:29:05 +00:00
|
|
|
# build sketch
|
|
|
|
echo -e "\n\033[1;33mBuilding ${example##*/} ... \033[0m";
|
|
|
|
arduino --verify --board $BOARD $example;
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo -e "\033[1;31m${example##*/} build FAILED\033[0m\n";
|
|
|
|
exit 1;
|
|
|
|
else
|
|
|
|
echo -e "\033[1;32m${example##*/} build PASSED\033[0m\n";
|
|
|
|
fi
|
2019-07-31 07:38:04 +00:00
|
|
|
fi
|
2020-04-15 07:29:05 +00:00
|
|
|
done
|
|
|
|
else
|
2020-04-15 07:36:29 +00:00
|
|
|
echo -e "\n\033[1;33mExample builds skipped for $BOARD\033[0m";
|
2020-04-15 07:29:05 +00:00
|
|
|
fi
|
2019-07-31 07:38:04 +00:00
|
|
|
|
2019-05-24 13:13:04 +00:00
|
|
|
# generate Doxygen documentation (only for Arduino UNO)
|
|
|
|
- if [ $BOARD = "arduino:avr:uno" ]; then
|
|
|
|
sudo apt-get update;
|
|
|
|
sudo apt-get install -y doxygen;
|
|
|
|
doxygen Doxyfile;
|
|
|
|
fi
|
|
|
|
|
|
|
|
# deploy Doxygen docs on master branch and only when building for Arduino UNO
|
|
|
|
deploy:
|
|
|
|
provider: pages
|
|
|
|
skip_cleanup: true
|
|
|
|
local_dir: docs/html
|
|
|
|
github_token: $GH_REPO_TOKEN
|
|
|
|
on:
|
|
|
|
branch: master
|
|
|
|
condition: $BOARD = "arduino:avr:uno"
|