We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63ac7e7 commit 2804296Copy full SHA for 2804296
.travis.yml
@@ -0,0 +1,19 @@
1
+language: generic
2
+env:
3
+ global:
4
+ - IDE_VERSION=1.8.5
5
+ matrix:
6
+ - BOARD="arduino:avr:uno"
7
+before_install:
8
+ - wget http://downloads.arduino.cc/arduino-$IDE_VERSION-linux64.tar.xz
9
+ - tar xf arduino-$IDE_VERSION-linux64.tar.xz
10
+ - mv arduino-$IDE_VERSION $HOME/arduino-ide
11
+ - export PATH=$PATH:$HOME/arduino-ide
12
+ - buildExampleSketch() { arduino --verbose-build --verify --board $BOARD $PWD/examples/$1/$1.ino; }
13
+install:
14
+ - mkdir -p $HOME/Arduino/libraries
15
+ - ln -s $PWD $HOME/Arduino/libraries/CAN
16
+script:
17
+ - buildExampleSketch CANReceiver
18
+ - buildExampleSketch CANReceiverCallback
19
+ - buildExampleSketch CANSender
0 commit comments