forked from shanteacontrols/OpenDeck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
26 lines (21 loc) · 909 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
language: cpp
# use sed to replace the SSH URL with the public URL, then init and update submodules
before_install:
- wget https://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en595059 -O avrtoolchain.tar.gz
- tar xzf avrtoolchain.tar.gz
- sudo ln -s $(pwd)/avr8-gnu-toolchain-linux_x86_64 /usr/local/avr
- PATH=/usr/local/avr/bin:${PATH}
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
- cd src/
install:
- sudo apt-get install -y srecord
script:
- make fw_opendeck && make fw_pro_micro && make fw_leonardo && make fw_uno && make fw_mega && make fw_16u2 && make fw_8u2 && make fw_teensy2pp && make boot_opendeck && make boot_leonardo && make boot_mega && make boot_kodama
# disable the default submodule logic
git:
submodules: false
notifications:
email:
on_success: change
on_failure: change