Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alf45tar authored Feb 25, 2018
1 parent 694f721 commit 2bc37b9
Showing 1 changed file with 23 additions and 16 deletions.
39 changes: 23 additions & 16 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,38 +9,45 @@ cache:
- "~/.platformio"

env:
- PLATFORMIO_CI_SRC=Pedalino PLATFORMIO_CI_EXTRA_ARGS="--lib=/tmp/arduino_midi_library-master --lib=/tmp/Bounce2-master --lib=/tmp/MD_Menu-master --lib=/tmp/MD_UISwitch-master --lib=/tmp/ResponsiveAnalogRead-master --lib=/tmp/Arduino-IRremote-master --board=megaatmega2560 --project-option='lib_deps=Wire' --project-option='lib_ignore=RobotIRremote'"
- PLATFORMIO_CI_SRC=PedalinoESP8266 PLATFORMIO_CI_EXTRA_ARGS="--lib=/tmp/arduino_midi_library-master --board=esp01_1m"
- PLATFORMIO_CI_SRC=Pedalino PLATFORMIO_CI_EXTRA_ARGS="--board=megaatmega2560 --project-option='lib_deps=Wire;lib_ignore=RobotIRremote'"
- PLATFORMIO_CI_SRC=PedalinoESP8266 PLATFORMIO_CI_EXTRA_ARGS="--board=esp01_1m"

install:
- pip install -U platformio
- platformio update
#
# Libraries from PlatformIO Library Registry:
#
- platformio lib -g install 136 https://github.com/lathoub/Arduino-AppleMIDI-Library.git

- platformio lib -g install 136 \
https://github.com/lathoub/Arduino-AppleMIDI-Library.git \
https://github.com/FortySevenEffects/arduino_midi_library.git \
https://github.com/thomasfredericks/Bounce2.git \
https://github.com/dxinteractive/ResponsiveAnalogRead.git \
https://github.com/MajicDesigns/MD_Menu.git \
https://github.com/MajicDesigns/MD_UISwitch.git \
https://github.com/z3t0/Arduino-IRremote.git \

#- wget https://raw.githubusercontent.com/alf45tar/Pedalino/master/platformio.ini -O /tmp/platformio.ini

# download library to the temporary directory

- wget https://github.com/FortySevenEffects/arduino_midi_library/archive/master.zip -O /tmp/arduino_midi_library_source.zip
- unzip /tmp/arduino_midi_library_source.zip -d /tmp/
#- wget https://github.com/FortySevenEffects/arduino_midi_library/archive/master.zip -O /tmp/arduino_midi_library_source.zip
#- unzip /tmp/arduino_midi_library_source.zip -d /tmp/

- wget https://github.com/thomasfredericks/Bounce2/archive/master.zip -O /tmp/Bounce2_source.zip
- unzip /tmp/Bounce2_source.zip -d /tmp/
#- wget https://github.com/thomasfredericks/Bounce2/archive/master.zip -O /tmp/Bounce2_source.zip
#- unzip /tmp/Bounce2_source.zip -d /tmp/

- wget https://github.com/MajicDesigns/MD_Menu/archive/master.zip -O /tmp/MD_Menu_source.zip
- unzip /tmp/MD_Menu_source.zip -d /tmp/
#- wget https://github.com/MajicDesigns/MD_Menu/archive/master.zip -O /tmp/MD_Menu_source.zip
#- unzip /tmp/MD_Menu_source.zip -d /tmp/

- wget https://github.com/MajicDesigns/MD_UISwitch/archive/master.zip -O /tmp/MD_UISwitch_source.zip
- unzip /tmp/MD_UISwitch_source.zip -d /tmp/
#- wget https://github.com/MajicDesigns/MD_UISwitch/archive/master.zip -O /tmp/MD_UISwitch_source.zip
#- unzip /tmp/MD_UISwitch_source.zip -d /tmp/

- wget https://github.com/dxinteractive/ResponsiveAnalogRead/archive/master.zip -O /tmp/ResponsiveAnalogRead_source.zip
- unzip /tmp/ResponsiveAnalogRead_source.zip -d /tmp/
#- wget https://github.com/dxinteractive/ResponsiveAnalogRead/archive/master.zip -O /tmp/ResponsiveAnalogRead_source.zip
#- unzip /tmp/ResponsiveAnalogRead_source.zip -d /tmp/

- wget https://github.com/z3t0/Arduino-IRremote/archive/master.zip -O /tmp/Arduino-IRremote_source.zip
- unzip /tmp/Arduino-IRremote_source.zip -d /tmp/
#- wget https://github.com/z3t0/Arduino-IRremote/archive/master.zip -O /tmp/Arduino-IRremote_source.zip
#- unzip /tmp/Arduino-IRremote_source.zip -d /tmp/

script:
- platformio ci $PLATFORMIO_CI_EXTRA_ARGS

0 comments on commit 2bc37b9

Please sign in to comment.