forked from Zanduino/INA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (34 loc) · 1.58 KB
/
.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
######################################################################################################
## Travis-CI control file ##
## ##
## Date Developer Comments ##
## ========== =================== ================================================================= ##
## 2019-01-20 Arnd@SV-Zanshin Linked to Adafruit script rather than manually defining all tests ##
## 2019-01-19 Arnd@SV-Zanshin Initial coding ##
## ##
######################################################################################################
language: c
sudo: false
# Blacklist
branches:
except:
- gh-pages
git:
depth: false
quiet: true
env:
global:
- PRETTYNAME="SV-Zanshin INA2xx Arduino Library"
- DOXYFILE: $TRAVIS_BUILD_DIR/Doxyfile
before_install:
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
install:
- arduino --install-library "Adafruit Unified Sensor","Adafruit GFX Library","Adafruit SSD1306"
script:
- build_main_platforms
notifications:
email:
on_success: change
on_failure: change
after_success:
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/doxy_gen_and_deploy.sh)