Skip to content

[CI] Update to Arduino 1.8.10 #658

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ matrix:
#
- env:
- NAME=arduinoCI
- IDE_VERSION=1.8.9
- IDE_VERSION=1.8.10
# Use in CI/build/conf/path_config_travis.json
- ARDUINO_IDE_PATH=$HOME/IDE/arduino
install:
Expand All @@ -54,9 +54,10 @@ matrix:
- ./arduino --save-prefs --pref "boardsmanager.additional.urls=https://github.com/stm32duino/BoardManagerFiles/raw/dev/STM32/package_stm_index.json"
# Install the latest core version
- ./arduino --install-boards STM32:stm32
- rm -fr $HOME/.arduino15/packages/STM32/hardware/stm32/*
# Replace default core with the one being built
- sudo ln -s $TRAVIS_BUILD_DIR $HOME/.arduino15/packages/STM32/hardware/stm32/*
# Replace default core with the one being built
- export CORE_VERSION=`ls $HOME/.arduino15/packages/STM32/hardware/stm32`;
rm -fr $HOME/.arduino15/packages/STM32/hardware/stm32/*;
sudo ln -s $TRAVIS_BUILD_DIR $HOME/.arduino15/packages/STM32/hardware/stm32/$CORE_VERSION
before_script:
- cd $TRAVIS_BUILD_DIR/CI/build/
- cp ./conf/path_config_travis.json ./path_config.json
Expand Down