For Travis to do a platform update to try and resolve board not found error

This commit is contained in:
Josh Stewart 2020-05-21 16:24:13 +10:00
parent fc1663e5d3
commit 904e1956f4
2 changed files with 3 additions and 2 deletions

View File

@ -57,8 +57,9 @@ script:
- ls noisymime/
- cd noisymime/speeduino
- platformio update
- platformio platform update
# Run the builds (Mega must be last so that the hex file isn't cleaned up)
- platformio run -e teensy35 -e teensy40 -e megaatmega2561 -e megaatmega2560
- platformio run -e teensy35 -e teensy40 -e megaatmega2561 -e megaatmega2560
# Run the remote unit tests (only on master)
- 'if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then platformio remote test --environment megaatmega2560; fi'
# Uploading the firmware to speeduino.com (Only on master)

View File

@ -20,7 +20,7 @@ debug_tool = simavr
[env:megaatmega2561]
platform=atmelavr
board=atmega2561
board=ATmega2561
framework=arduino
build_unflags = -Os
build_flags = -O3 -ffast-math -Wall -Wextra -std=c99